-
Notifications
You must be signed in to change notification settings - Fork 0
/
Spotify_2020-2021_genres_and_country.csv
We can't make this file beautiful and searchable because it's too large.
1929 lines (1929 loc) · 544 KB
/
Spotify_2020-2021_genres_and_country.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
,Unnamed: 0,Index,Title,Artist,TopGenre,Year,BeatsPerMinute,Energy,Danceability,Loudness,Liveness,Valence,Duration,Acousticness,Speechiness,Popularity,Chord,HighestChartingPosition,NumberofTimesCharted,HighestChartingWeek,Streams,ArtistFollowers,SongID,ReleaseDate,Genre,pop,rock,hip hop,metal,alternative,specific,dance,country,soul,electro,folk,jazz,blues,Country
0,0,1,Beggin',MÃ¥neskin,indie rock italiano,2017.0,134,0.8,0.714,-4.808,0.359,0.589,212,0.127,0.0504,100,B,1,8,2021-07-23--2021-07-30,48633449,3377762,3Wrjm47oTz2sjIgck11l5e,2017-12-08 00:00:00,"['indie rock italiano', 'italian pop']",0,1,0,0,1,0,0,0,0,0,0,0,0,
1,1,2,STAY (with Justin Bieber),The Kid LAROI,australian hip hop,2021.0,170,0.764,0.591,-5.484,0.103,0.478,142,0.0383,0.0483,99,C#/Db,2,3,2021-07-23--2021-07-30,47248719,2230022,5HCyWlXZPP0y6Gqq8TgA20,2021-07-09 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
2,2,3,good 4 u,Olivia Rodrigo,pop,2021.0,167,0.664,0.563,-5.044,0.0849,0.688,179,0.335,0.154,99,A,1,11,2021-06-25--2021-07-02,40162559,6266514,4ZtFanR9U6ndgddUvNcjcG,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
3,3,4,Bad Habits,Ed Sheeran,pop,2021.0,126,0.897,0.808,-3.712,0.364,0.591,232,0.0469,0.0348,98,B,3,5,2021-07-02--2021-07-09,37799456,83293380,6PQ88X9TkUIAUIZJHW2upE,2021-06-25 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
4,3,4,Bad Habits,Ed Sheeran,pop,2021.0,126,0.897,0.808,-3.712,0.364,0.591,232,0.0469,0.0348,98,B,3,5,2021-07-02--2021-07-09,37799456,83293380,6PQ88X9TkUIAUIZJHW2upE,2021-06-25 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
5,4,5,INDUSTRY BABY (feat. Jack Harlow),Lil Nas X,lgbtq+ hip hop,2021.0,150,0.704,0.736,-7.409,0.0501,0.894,212,0.0203,0.0615,96,D#/Eb,5,1,2021-07-23--2021-07-30,33948454,5473565,27NovPIUIRrOZoCHxABJwK,2021-07-23 00:00:00,"['lgbtq+ hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
6,5,6,MONTERO (Call Me By Your Name),Lil Nas X,lgbtq+ hip hop,2021.0,179,0.508,0.61,-6.682,0.384,0.758,138,0.297,0.152,97,G#/Ab,1,18,2021-05-07--2021-05-14,30071134,5473565,67BtfxlNbhBmCDR2L2l8qd,2021-03-31 00:00:00,"['lgbtq+ hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
7,6,7,Kiss Me More (feat. SZA),Doja Cat,dance pop,2021.0,111,0.701,0.762,-3.541,0.123,0.742,209,0.235,0.0286,94,G#/Ab,3,16,2021-05-14--2021-05-21,29356736,8640063,748mdHapucXQri7IAO8yFK,2021-04-09 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
8,7,8,Todo De Ti,Rauw Alejandro,puerto rican pop,2021.0,128,0.718,0.78,-3.605,0.0932,0.342,200,0.31,0.0506,95,D#/Eb,2,10,2021-06-18--2021-06-25,26951613,6080597,4fSIb4hdOQ151TILNsSEaF,2021-05-20 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
9,8,9,Yonaguni,Bad Bunny,latin,2021.0,180,0.648,0.644,-4.601,0.135,0.44,207,0.276,0.118,96,C#/Db,3,8,2021-06-18--2021-06-25,25030128,36142273,2JPLbjOn0wPCngEot2STUS,2021-06-04 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
10,9,10,I WANNA BE YOUR SLAVE,MÃ¥neskin,indie rock italiano,2021.0,133,0.608,0.75,-4.008,0.178,0.958,174,0.00165,0.0387,95,C#/Db,8,10,2021-07-02--2021-07-09,24551591,3377762,4pt5fDVTg5GhEvEtlz9dKk,2021-03-19 00:00:00,"['indie rock italiano', 'italian pop']",0,1,0,0,1,0,0,0,0,0,0,0,0,
11,10,11,Levitating (feat. DaBaby),Dua Lipa,dance pop,2020.0,103,0.825,0.702,-3.787,0.0674,0.915,204,0.00883,0.0601,89,F#/Gb,4,43,2021-05-07--2021-05-14,23518010,27142474,463CkQjx2Zk1yXoBuierM9,2020-10-01 00:00:00,"['dance pop', 'pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
12,11,12,Qué Más Pues?,"J Balvin, Maria Becerra",latin,2021.0,102,0.819,0.891,-3.964,0.173,0.768,218,0.0261,0.106,95,G#/Ab,9,9,2021-07-02--2021-07-09,22405111,29051363,6hf0RpxTbOprT5nnwzkk8e,2021-05-28 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
13,12,13,Permission to Dance,BTS,k-pop,2021.0,125,0.741,0.702,-5.33,0.337,0.646,188,0.00544,0.0427,95,A,5,3,2021-07-09--2021-07-16,22062812,37106176,0LThjFY2iTtNdd4wviwVV2,2021-07-09 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
14,13,14,Peaches (feat. Daniel Caesar & Giveon),Justin Bieber,canadian pop,2021.0,90,0.696,0.677,-6.181,0.42,0.464,199,0.321,0.119,94,C,1,19,2021-04-02--2021-04-09,20294457,48504126,4iJyoBOLtHqaGxP12qzhQI,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
15,14,15,Butter,BTS,k-pop,2021.0,110,0.459,0.759,-5.187,0.0906,0.695,165,0.00323,0.0948,95,G#/Ab,2,10,2021-05-21--2021-05-28,19985713,37106176,2bgTY4UwhfBYhGT4HUYStN,2021-06-04 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
16,15,16,traitor,Olivia Rodrigo,pop,2021.0,101,0.339,0.38,-7.885,0.12,0.0849,230,0.691,0.0338,94,D#/Eb,7,10,2021-05-21--2021-05-28,19480679,6266514,5CZ40GBx1sQ9agT82CLQCT,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
17,16,17,deja vu,Olivia Rodrigo,pop,2021.0,181,0.612,0.442,-7.222,0.37,0.178,216,0.584,0.112,93,D,3,17,2021-05-21--2021-05-28,18571755,6266514,6HU7h9RYOaPRFeh0R3UeAr,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
18,17,18,Save Your Tears (with Ariana Grande) (Remix),The Weeknd,canadian contemporary r&b,2021.0,118,0.825,0.65,-4.645,0.0936,0.593,192,0.0215,0.0325,94,C,5,14,2021-04-23--2021-04-30,18053141,35305637,37BZB0z9T8Xu7U3e65qxFy,2021-04-23 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
19,18,19,AM Remix,"Nio Garcia, J Balvin, Bad Bunny",latin,2021.0,172,0.655,0.743,-5.015,0.0764,0.785,262,0.114,0.159,93,F#/Gb,14,5,2021-07-02--2021-07-09,17617965,2123734,05bfbizlM5AX6Mf1RRyMho,2021-06-24 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
20,19,20,Need To Know,Doja Cat,dance pop,2021.0,130,0.609,0.664,-6.509,0.0926,0.194,211,0.304,0.0707,90,C#/Db,20,7,2021-07-23--2021-07-30,16908917,8640063,3Vi5XqYrmQgOYBajMWSvCi,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
21,20,21,Volando - Remix,"Mora, Bad Bunny, Sech",reggaeton,2021.0,154,0.688,0.659,-4.649,0.113,0.632,274,0.207,0.0673,91,F#/Gb,19,3,2021-07-16--2021-07-23,16606925,151486,0G2zPzWqVjR68iNPmx2TBe,2021-07-08 00:00:00,"['reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
22,21,22,Ain't Shit,Doja Cat,dance pop,2021.0,124,0.488,0.855,-4.601,0.347,0.619,175,0.506,0.208,90,D#/Eb,22,5,2021-07-23--2021-07-30,16126897,8640063,5lAnYvAIkSDNXqfo7DyFUm,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
23,22,23,drivers license,Olivia Rodrigo,pop,2021.0,144,0.431,0.561,-8.81,0.106,0.137,243,0.768,0.0578,92,A#/Bb,1,29,2021-03-12--2021-03-19,15684978,6266514,5wANPM4fQCJwkGd4rN57mH,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
24,23,24,Heat Waves,Glass Animals,gauze pop,2020.0,81,0.525,0.761,-6.9,0.0921,0.531,239,0.44,0.0944,85,B,24,31,2021-07-23--2021-07-30,15089184,1890510,3USxtqRwSYz57Ewm6wWRMp,2020-08-07 00:00:00,"['gauze pop', 'indietronica', 'shiver pop']",1,0,0,0,1,0,0,0,0,0,0,0,0,United Kingdom
25,24,25,Blinding Lights,The Weeknd,canadian contemporary r&b,2020.0,171,0.73,0.514,-5.934,0.0897,0.334,201,0.00146,0.0598,92,C#/Db,1,83,2020-06-12--2020-06-19,15011809,35305637,0VjIjW4GlUZAMYd2vXMi3b,2020-03-20 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
26,25,26,happier,Olivia Rodrigo,pop,2021.0,169,0.443,0.395,-9.72,0.0839,0.338,176,0.765,0.133,92,F#/Gb,12,10,2021-05-21--2021-05-28,14849078,6266514,2tGvwE8GcFKwNdAXMnlbfl,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
27,26,27,Pepas,Farruko,latin,2021.0,130,0.766,0.762,-3.955,0.128,0.442,288,0.00776,0.0343,92,G,27,3,2021-07-23--2021-07-30,14809458,10502148,5fwSHlTEWpluwOM0Sxnh5k,2021-06-24 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
28,27,28,Motley Crew,Post Malone,dfw rap,2021.0,130,0.631,0.797,-3.818,0.0998,0.288,185,0.0904,0.0786,90,D#/Eb,18,3,2021-07-09--2021-07-16,14329162,33651775,40uMIn2zJLAQhNXghRjBed,2021-07-09 00:00:00,"['dfw rap', 'melodic rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
29,28,29,Friday (feat. Mufasa & Hypeman) - Dopamine Re-Edit,"Riton, Nightcrawlers",dance pop,2021.0,123,0.862,0.824,-3.424,0.303,0.801,170,0.0076,0.126,92,D,15,23,2021-05-07--2021-05-14,14273637,83689,4cG7HUWYHBV6R6tHn1gxrl,2021-01-15 00:00:00,"['dance pop', 'house', 'pop dance', 'tropical house', 'uk dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,
30,29,30,Astronaut In The Ocean,Masked Wolf,australian hip hop,2021.0,150,0.695,0.778,-6.865,0.15,0.472,133,0.175,0.0913,89,E,3,28,2021-04-02--2021-04-09,14174752,365975,3Ofmpyhv5UAQ70mENzB277,2021-01-06 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
31,30,31,Leave The Door Open,"Bruno Mars, Anderson .Paak, Silk Sonic",dance pop,2021.0,148,0.616,0.586,-7.964,0.0927,0.719,243,0.182,0.0324,92,F,5,21,2021-04-09--2021-04-16,13963568,32574754,7MAibcTli4IisCtbHKrGMh,2021-03-05 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
32,31,32,Don't Go Yet,Camila Cabello,dance pop,2021.0,110,0.796,0.666,-6.967,0.0442,0.61,165,0.0492,0.103,88,A#/Bb,32,1,2021-07-23--2021-07-30,13205250,22683756,1058fW9H3fZA6QjYCdOBad,2021-07-23 00:00:00,"['dance pop', 'electropop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
33,32,33,favorite crime,Olivia Rodrigo,pop,2021.0,173,0.272,0.369,-10.497,0.147,0.218,153,0.866,0.0364,91,A,11,10,2021-05-28--2021-06-04,12818935,6266514,5JCoSi02qi3jJeHdZXMmR8,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
34,33,34,Pareja Del Año,"Sebastian Yatra, Myke Towers",colombian pop,2021.0,80,0.622,0.715,-5.102,0.0948,0.808,196,0.163,0.046,91,E,10,15,2021-05-07--2021-05-14,12572307,16216789,2rCbl9naJYhaxjLsfx88uM,2021-04-16 00:00:00,"['colombian pop', 'latin', 'reggaeton', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
35,34,35,Watermelon Sugar,Harry Styles,pop,2019.0,95,0.816,0.548,-4.209,0.335,0.557,174,0.122,0.0465,90,C,4,83,2020-07-31--2020-08-07,11996689,16112621,6UelLqGlWMcVH1E5c4H7lY,2019-12-13 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
36,35,37,RAPSTAR,Polo G,chicago rap,2021.0,81,0.536,0.789,-6.862,0.129,0.437,166,0.41,0.242,89,F#/Gb,3,16,2021-04-16--2021-04-23,11683383,4840346,43PGPuHIlVOc04jrZVh9L6,2021-04-09 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
37,36,38,You Right,"Doja Cat, The Weeknd",dance pop,2021.0,129,0.621,0.828,-6.414,0.0845,0.436,187,0.0164,0.0565,89,G#/Ab,15,5,2021-06-25--2021-07-02,11629418,8640063,0k4d5YPDr1r7FX77VdqWez,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
38,37,39,911 - Remix,"Sech, Jhay Cortez",latin,2021.0,93,0.71,0.816,-3.728,0.292,0.784,209,0.165,0.0398,89,G,39,3,2021-07-23--2021-07-30,11553846,8758283,27RSJHEA99Y0Vsow7nA37A,2021-07-09 00:00:00,"['latin', 'panamanian pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
39,38,40,DÃKITI,"Bad Bunny, Jhay Cortez",latin,2020.0,110,0.573,0.731,-10.059,0.113,0.145,206,0.401,0.0544,86,E,1,39,2021-01-01--2021-01-08,11524288,36142273,4MzXwWMhyBbmu6hOcLVD49,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
40,39,41,Miénteme,"TINI, Maria Becerra",latin pop,2021.0,92,0.541,0.85,-4.522,0.286,0.916,166,0.161,0.0674,90,D,41,13,2021-07-23--2021-07-30,11477024,2936204,0cOa970mzTWAxKtltpkpLc,2021-04-29 00:00:00,"['latin pop', 'pop argentino']",1,0,0,0,0,0,0,0,0,0,0,0,0,
41,40,42,"jealousy, jealousy",Olivia Rodrigo,pop,2021.0,164,0.575,0.695,-6.334,0.0614,0.699,174,0.198,0.116,90,A#/Bb,17,10,2021-05-21--2021-05-28,11287301,6266514,0MMyJUC3WNnFS1lit5pTjk,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
42,41,43,Poblado - Remix,"J Balvin, KAROL G, Nicky Jam, Crissin, Totoy El Frio, Natan & Shander",latin,2021.0,93,0.809,0.813,-5.382,0.377,0.646,394,0.102,0.0846,89,D#/Eb,33,6,2021-07-02--2021-07-09,11283626,29051363,1WedZeiezCmCEOzLwhx0hV,2021-06-18 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
43,42,44,Dynamite,BTS,k-pop,2020.0,114,0.765,0.746,-4.41,0.0936,0.737,200,0.0112,0.0993,89,F#/Gb,2,49,2020-11-20--2020-11-27,11196819,37106176,4saklk6nie3yiGePpBwUoc,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
44,43,45,The Business,Tiësto,big room,2020.0,120,0.62,0.798,-7.079,0.112,0.235,164,0.414,0.232,90,G#/Ab,9,39,2021-02-26--2021-03-05,10739770,5785065,6f3Slt0GbA2bPZlz0aIFXN,2020-09-16 00:00:00,"['big room', 'brostep', 'dance pop', 'dutch edm', 'edm', 'electro house', 'house', 'pop dance', 'slap house', 'trance', 'tropical house']",0,0,0,0,0,0,0,0,0,1,0,0,0,
45,44,46,Heartbreak Anthem (with David Guetta & Little Mix),Galantis,dance pop,2021.0,124,0.784,0.595,-4.878,0.0608,0.479,184,0.216,0.102,89,C#/Db,46,10,2021-07-23--2021-07-30,10315460,3120157,5K6Ssv4Z3zRvxt0P6EKUAP,2021-05-20 00:00:00,"['dance pop', 'edm', 'electro house', 'pop', 'pop dance', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,Sweden
46,45,47,Mood (feat. iann dior),24kGoldn,cali rap,2021.0,91,0.716,0.701,-3.671,0.324,0.732,141,0.174,0.0361,89,G,1,51,2020-10-16--2020-10-23,10222056,1274433,4jPy3l0RUwlUI9T5XHBW2m,2021-03-26 00:00:00,['cali rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
47,46,48,Entre Nosotros,"Tiago PZK, LIT killah",trap argentino,2021.0,170,0.513,0.729,-6.345,0.137,0.789,193,0.494,0.0455,89,F,48,3,2021-07-23--2021-07-30,10215216,375865,6w8yBI2vthyN9UnwO4UBWb,2021-07-08 00:00:00,['trap argentino'],0,0,1,0,0,0,1,0,0,0,0,0,0,
48,47,49,Fiel - Remix,"Wisin, Jhay Cortez, Anuel AA, Los Legendarios, Myke Towers",latin,2021.0,98,0.711,0.839,-4.733,0.118,0.573,350,0.398,0.0473,89,F#/Gb,29,6,2021-06-25--2021-07-02,10032746,6929075,43qcs9NpJhDxtG91zxFkj7,2021-06-15 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
49,48,51,"Nicky Jam: Bzrp Music Sessions, Vol. 41","Bizarrap, Nicky Jam",argentine hip hop,2021.0,90,0.849,0.627,-3.167,0.145,0.818,159,0.0913,0.153,88,C#/Db,19,4,2021-07-02--2021-07-09,9799701,3126961,03LfOYi0icz4souspZVVhq,2021-06-30 00:00:00,"['argentine hip hop', 'pop venezolano', 'trap argentino', 'trap latino']",0,0,1,0,0,0,0,0,0,0,0,0,0,
50,49,53,NDA,Billie Eilish,electropop,2021.0,85,0.373,0.765,-9.921,0.112,0.554,196,0.341,0.0713,84,G#/Ab,19,3,2021-07-09--2021-07-16,9635619,47014200,38GBNKZUhfBkk3oNlWzRYd,2021-07-30 00:00:00,"['electropop', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,United States
51,50,54,Rasputin,"Majestic, Boney M.",house,2021.0,128,0.839,0.83,-6.985,0.0353,0.59,346,0.00201,0.0699,49,F#/Gb,40,14,2021-06-18--2021-06-25,9600707,32178,6FO4K7MrMoYkc5BlpX5LNV,2021-06-25 00:00:00,"['house', 'pop dance', 'uk dance']",0,0,0,0,0,0,1,0,0,0,0,0,0,
52,51,55,Leave Before You Love Me (with Jonas Brothers),Marshmello,brostep,2021.0,120,0.738,0.721,-4.77,0.118,0.637,155,0.00226,0.0403,89,G,52,9,2021-07-02--2021-07-09,9428494,31541310,4qu63nuBpdn0qHUHuObEj1,2021-05-21 00:00:00,"['brostep', 'edm', 'pop', 'pop dance', 'progressive electro house']",0,0,0,0,0,0,1,0,0,0,0,0,0,United States
53,52,56,Freaks,Surf Curse,dreamo,2021.0,180,0.941,0.345,-9.918,0.0511,0.407,148,3.84e-05,0.0466,89,A,56,13,2021-07-23--2021-07-30,9319465,495226,7EkWXAI1wn8Ii883ecd9xr,2021-05-15 00:00:00,"['dreamo', 'indie surf', 'surf punk', 'vegas indie']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
54,53,58,2/Catorce,"Rauw Alejandro, Mr. Naisgai",puerto rican pop,2021.0,84,0.455,0.54,-5.988,0.12,0.432,213,0.675,0.224,87,D#/Eb,31,12,2021-06-04--2021-06-11,9086979,6080597,71R8HJxQk5qMiRstrlXN9t,2021-02-14 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,
55,54,59,Beautiful Mistakes (feat. Megan Thee Stallion),Maroon 5,pop,2021.0,99,0.676,0.713,-5.483,0.154,0.721,228,0.0377,0.027,88,A#/Bb,34,21,2021-04-23--2021-04-30,9048966,32262679,5zFglKYiknIxks8geR8rcL,2021-06-11 00:00:00,"['pop', 'pop rock']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
56,55,60,Run,OneRepublic,dance pop,2021.0,117,0.72,0.682,-8.173,0.148,0.673,170,0.326,0.0381,88,B,31,15,2020-02-07--2020-02-14,9017356,12169108,2UbVnbE5FH6008mAm6Mmgw,2021-05-05 00:00:00,"['dance pop', 'piano rock', 'pop', 'pop rock']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
57,56,61,Thot Shit,Megan Thee Stallion,houston rap,2021.0,130,0.693,0.95,-3.424,0.173,0.891,185,0.0133,0.0898,88,A,46,7,2021-07-02--2021-07-09,8977336,4787261,5zNW5ARjYhJQJz1AChP33n,2021-06-11 00:00:00,"['houston rap', 'pop', 'pop rap', 'trap queen']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
58,57,62,Your Love (9PM),"ATB, Topic, A7S",german dance,2021.0,126,0.784,0.669,-5.603,0.115,0.517,151,0.194,0.112,88,G,26,26,2021-03-26--2021-04-02,8935418,291777,5YaskwnGDZFDRipaqzbwQx,2021-01-15 00:00:00,"['german dance', 'german techno', 'german trance', 'trance']",0,0,0,0,0,0,1,0,0,0,0,0,0,
59,58,63,brutal,Olivia Rodrigo,pop,2021.0,124,0.526,0.672,-6.446,0.28,0.28,144,0.0311,0.0599,89,E,9,10,2021-05-21--2021-05-28,8881356,6266514,6SRsiMl7w1USE4mFqrOhHC,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
60,59,64,Save Your Tears,The Weeknd,canadian contemporary r&b,2021.0,118,0.825,0.65,-4.645,0.0936,0.593,192,0.0215,0.0325,94,C,2,34,2021-02-26--2021-03-05,8843110,35305637,37BZB0z9T8Xu7U3e65qxFy,2021-04-23 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
61,60,65,Heartbreak Anniversary,Giveon,pop,2020.0,89,0.465,0.449,-8.964,0.303,0.543,199,0.524,0.0791,87,C,8,24,2021-04-02--2021-04-09,8832945,1398563,3FAJ6O0NOHQV8Mc5Ri6ENp,2020-03-27 00:00:00,"['pop', 'r&b']",1,0,0,0,0,0,0,0,0,0,0,0,0,
62,61,68,Sweater Weather,The Neighbourhood,modern alternative rock,2013.0,124,0.807,0.612,-2.81,0.101,0.398,241,0.0495,0.0336,87,A#/Bb,35,48,2021-01-29--2021-02-05,8564017,6662605,2QjOHCTQ1Jl3zawyYOpxh6,2013-04-19 00:00:00,"['modern alternative rock', 'modern rock', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
63,61,68,Sweater Weather,The Neighbourhood,modern alternative rock,2013.0,124,0.807,0.612,-2.81,0.101,0.398,241,0.0495,0.0336,87,A#/Bb,35,48,2021-01-29--2021-02-05,8564017,6662605,2QjOHCTQ1Jl3zawyYOpxh6,2013-04-19 00:00:00,"['modern alternative rock', 'modern rock', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
64,62,69,Sobrio,Maluma,latin,2021.0,178,0.77,0.762,-2.758,0.15,0.631,202,0.138,0.223,87,F,69,3,2021-07-23--2021-07-30,8514480,26769304,4HzqWEdAbzcVFDv0pvxV4w,2021-07-08 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,Colombia
65,63,70,Someone You Loved,Lewis Capaldi,pop,2019.0,110,0.405,0.501,-5.679,0.105,0.446,183,0.751,0.0319,86,C#/Db,12,83,2019-12-27--2020-01-03,8490162,8384096,7qEHsqek33rTcFNT9PFqLf,2019-05-17 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
66,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
67,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,France
68,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Romania
69,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Australia
70,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
71,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
72,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
73,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
74,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Japan
75,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
76,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
77,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
78,64,71,Over The Top (feat. Drake),Smiley,canadian hip hop,2021.0,140,0.498,0.833,-5.196,0.119,0.259,154,0.0493,0.117,83,A#/Bb,71,1,2021-07-23--2021-07-30,8269753,26131,3yaYgjEFkRw3PVjW9mV1TO,2021-07-23 00:00:00,"['canadian hip hop', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Netherlands
79,65,72,2055,Sleepy Hallow,brooklyn drill,2021.0,81,0.512,0.829,-5.865,0.12,0.638,124,0.492,0.187,85,F#/Gb,72,2,2021-07-23--2021-07-30,8133401,408696,4XvcHTUfIlWfyJTRG0aqlo,2021-06-02 00:00:00,"['brooklyn drill', 'nyc rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
80,66,73,EL MAKINON,"KAROL G, Mariah Angeliq",latin,2021.0,89,0.706,0.635,-3.224,0.108,0.443,210,0.256,0.125,87,F,33,18,2021-05-07--2021-05-14,8102107,17775316,2FSGUA0gFgGeQdprjtGM2M,2021-03-26 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
81,67,74,Loco,"Justin Quiles, Chimbala, Zion & Lennox",latin,2021.0,128,0.899,0.77,-2.981,0.0894,0.851,232,0.222,0.0494,87,G#/Ab,74,8,2021-07-23--2021-07-30,8093413,2895789,6PDlkWmrq2ZKiUuFt2aQsH,2021-05-13 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
82,68,75,Love Tonight - Edit,Shouse,aussietronica,2017.0,123,0.681,0.727,-7.114,0.0861,0.448,242,0.00214,0.0265,87,F,75,4,2021-07-23--2021-07-30,8006336,27116,6OufwUcCqo81guU2jAlDVP,2017-12-14 00:00:00,['aussietronica'],0,0,0,0,0,0,0,0,0,1,0,0,0,
83,69,76,ZITTI E BUONI,MÃ¥neskin,indie rock italiano,2021.0,103,0.939,0.625,-3.115,0.424,0.644,195,0.00138,0.0669,86,E,12,11,2021-05-28--2021-06-04,7975148,3377762,776AftMmFFAWUIEAb3lHhw,2021-03-19 00:00:00,"['indie rock italiano', 'italian pop']",0,1,0,0,1,0,0,0,0,0,0,0,0,
84,70,77,telepatÃa,Kali Uchis,colombian pop,2020.0,84,0.524,0.653,-9.016,0.203,0.553,161,0.112,0.0502,88,B,2,23,2021-03-12--2021-03-19,7912399,1999954,6tDDoYIxWvMLTdKpjFkc1B,2020-12-04 00:00:00,"['colombian pop', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Colombia
85,71,78,Botella Tras Botella,"Gera MX, Christian Nodal",mexican hip hop,2021.0,107,0.546,0.727,-4.572,0.122,0.69,198,0.656,0.0437,87,C,9,14,2021-04-23--2021-04-30,7735223,2043294,2MnLkFqY9Rpg9s3Zv6ZJdK,2021-04-23 00:00:00,"['mexican hip hop', 'rap conciencia']",0,0,1,0,0,0,0,0,0,0,0,0,0,
86,72,79,Fiel,"Los Legendarios, Wisin, Jhay Cortez",reggaeton,2021.0,98,0.701,0.849,-4.407,0.112,0.505,262,0.407,0.06,88,F#/Gb,7,24,2021-05-07--2021-05-14,7717211,31488,7Bk0uXKk1uPT0XuQbpFzvs,2021-02-04 00:00:00,"['reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
87,73,80,Dance Monkey,Tones And I,australian pop,2019.0,98,0.588,0.824,-6.4,0.149,0.513,210,0.692,0.0924,83,F#/Gb,1,83,2020-02-14--2020-02-21,7687058,2819593,2XU0oxnq2qxCpomAAuJY8K,2019-10-17 00:00:00,"['australian pop', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
88,74,81,WITHOUT YOU,The Kid LAROI,australian hip hop,2020.0,93,0.413,0.662,-7.357,0.134,0.467,162,0.213,0.0299,87,C,7,34,2021-02-05--2021-02-12,7642130,2230022,27OeeYzk6klgBh83TSvGMA,2020-11-06 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
89,75,82,Wants and Needs (feat. Lil Baby),Drake,canadian hip hop,2021.0,136,0.449,0.578,-6.349,0.119,0.1,193,0.0618,0.286,87,C#/Db,6,21,2021-03-05--2021-03-12,7637626,56308172,65OVbaJR5O1RmwOQx0875b,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
90,75,82,Wants and Needs (feat. Lil Baby),Drake,canadian hip hop,2021.0,136,0.449,0.578,-6.349,0.119,0.1,193,0.0618,0.286,87,C#/Db,6,21,2021-03-05--2021-03-12,7637626,56308172,65OVbaJR5O1RmwOQx0875b,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Chile
91,75,82,Wants and Needs (feat. Lil Baby),Drake,canadian hip hop,2021.0,136,0.449,0.578,-6.349,0.119,0.1,193,0.0618,0.286,87,C#/Db,6,21,2021-03-05--2021-03-12,7637626,56308172,65OVbaJR5O1RmwOQx0875b,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Poland
92,75,82,Wants and Needs (feat. Lil Baby),Drake,canadian hip hop,2021.0,136,0.449,0.578,-6.349,0.119,0.1,193,0.0618,0.286,87,C#/Db,6,21,2021-03-05--2021-03-12,7637626,56308172,65OVbaJR5O1RmwOQx0875b,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
93,76,83,Bezos I,Bo Burnham,comic,2021.0,115,0.948,0.694,-5.307,0.139,0.705,59,0.00936,0.0361,84,D,83,2,2021-07-23--2021-07-30,7516291,1042079,0Kdj7nwaYQmvhxnqZaIQuW,2021-06-10 00:00:00,['comic'],0,0,0,0,0,1,0,0,0,0,0,0,0,United States
94,77,85,Goosebumps - Remix,"Travis Scott, HVME",rap,2021.0,125,0.593,0.841,-7.846,0.124,0.808,163,0.418,0.0379,87,C#/Db,32,28,2021-04-30--2021-05-07,7452633,17719446,5uEYRdEIh9Bo4fpjDd4Na9,2021-01-15 00:00:00,"['rap', 'slap house']",0,0,1,0,0,0,0,0,0,0,0,0,0,
95,78,86,Head & Heart (feat. MNEK),Joel Corry,dance pop,2020.0,123,0.874,0.734,-3.158,0.0489,0.905,167,0.168,0.0662,87,G#/Ab,11,55,2020-10-09--2020-10-16,7434252,207547,6cx06DFPPHchuUAcTxznu9,2020-07-03 00:00:00,"['dance pop', 'edm', 'pop', 'pop dance', 'tropical house', 'uk dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,
96,79,87,BED,"Joel Corry, RAYE, David Guetta",dance pop,2021.0,124,0.782,0.671,-4.593,0.333,0.618,179,0.0142,0.0341,87,F#/Gb,42,20,2021-04-23--2021-04-30,7383369,207547,0siYMEsGrzzzlWLXK5zJfS,2021-02-26 00:00:00,"['dance pop', 'edm', 'pop', 'pop dance', 'tropical house', 'uk dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,
97,80,88,Iko Iko (My Bestie),"Justin Wellington, Small Jam",melanesian pop,2019.0,105,0.753,0.862,-5.356,0.077,0.827,183,0.131,0.0625,87,F,78,8,2021-07-02--2021-07-09,7381585,18228,7MC4XR9M9amdmKQr2iDF7i,2019-06-03 00:00:00,"['melanesian pop', 'pacific islands pop', 'png pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
98,81,89,Better Believe,"Belly, The Weeknd, Young Thug",canadian hip hop,2021.0,125,0.573,0.797,-7.85,0.144,0.445,207,0.159,0.319,80,C,89,1,2021-07-23--2021-07-30,7365053,203972,3zs87EV3EZSh2UpiXxT52Y,2021-07-22 00:00:00,"['canadian hip hop', 'canadian trap', 'pop rap', 'rap', 'southern hip hop', 'trap', 'trap soul', 'underground hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
99,82,90,Arcade,Duncan Laurence,dutch pop,2019.0,72,0.329,0.45,-12.603,0.135,0.266,184,0.818,0.0441,84,A,23,25,2021-04-02--2021-04-09,7353795,287361,1Xi84slp6FryDSCbzq4UCD,2019-03-07 00:00:00,['dutch pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
100,83,91,512,"Mora, Jhay Cortez",reggaeton,2021.0,88,0.673,0.818,-7.542,0.172,0.695,194,0.348,0.148,87,E,55,13,2021-05-28--2021-06-04,7336542,151486,5jzEwSyyymBlf1fa1o39T2,2021-02-05 00:00:00,"['reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
101,84,92,positions,Ariana Grande,dance pop,2020.0,144,0.802,0.737,-4.771,0.0931,0.682,173,0.468,0.0878,86,C,1,40,2020-10-30--2020-11-06,7244853,67158068,35mvY5S1H3J2QZyna3TFe0,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
102,85,93,Circles,Post Malone,dfw rap,2019.0,120,0.762,0.695,-3.497,0.0863,0.553,216,0.192,0.0395,87,C,6,84,2019-12-27--2020-01-03,7156162,33651775,21jGcNKet2qwijlDFuPiPb,2019-09-06 00:00:00,"['dfw rap', 'melodic rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
103,86,94,Blaues Licht,"RAF Camora, Bonez MC",german hip hop,2021.0,145,0.835,0.819,-4.899,0.252,0.703,145,0.398,0.102,78,G#/Ab,94,1,2021-07-23--2021-07-30,7084292,1329531,08EPQiLMyGB8GJX2EiVoCM,2021-07-16 00:00:00,['german hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
104,87,95,Ram Pam Pam,"Natti Natasha, Becky G",latin,2021.0,97,0.813,0.908,-2.749,0.278,0.924,201,0.305,0.0777,86,F,75,10,2021-07-02--2021-07-09,7064003,6341942,4DHDIdeayp8xvlyg22wREO,2021-04-20 00:00:00,"['latin', 'latin pop', 'rap latina', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
105,88,97,Woman,Doja Cat,dance pop,2021.0,108,0.764,0.824,-4.175,0.117,0.881,173,0.0888,0.0854,86,F,97,3,2021-07-23--2021-07-30,6858466,8640063,6Uj1ctrBOjOas8xZXGqKk4,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
106,89,98,t r a n s p a r e n t s o u l feat. Travis Barker,WILLOW,afrofuturism,2021.0,90,0.83,0.39,-5.201,0.156,0.191,169,0.0021,0.0563,85,B,60,8,2021-06-18--2021-06-25,6853994,1521837,1QL7nSDZCwZMnbisV4KOXt,2021-04-27 00:00:00,"['afrofuturism', 'dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop']",0,0,0,0,0,1,0,0,0,0,0,0,0,
107,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Netherlands
108,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Germany
109,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
110,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
111,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,New Zealand
112,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Spain
113,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Spain
114,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Netherlands
115,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
116,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
117,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
118,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
119,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
120,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
121,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
122,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
123,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
124,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
125,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
126,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
127,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
128,90,99,Clash (feat. Stormzy),Dave,uk hip hop,2021.0,140,0.519,0.871,-6.549,0.0869,0.532,252,0.313,0.258,79,D,99,2,2021-07-23--2021-07-30,6825463,1427540,2oUwMN5VfdGX10XeQJLBBi,2021-07-08 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
129,91,100,Before You Go,Lewis Capaldi,pop,2019.0,112,0.575,0.459,-4.858,0.0885,0.183,216,0.604,0.0573,83,D#/Eb,22,83,2020-02-07--2020-02-14,6813800,8384096,2gMXnyrvIjhVBUZwvLZDMP,2019-11-22 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
130,92,101,Levitating,Dua Lipa,dance pop,2020.0,103,0.825,0.702,-3.787,0.0674,0.915,204,0.00883,0.0601,89,F#/Gb,52,19,2020-03-27--2020-04-03,6799831,27142474,463CkQjx2Zk1yXoBuierM9,2020-10-01 00:00:00,"['dance pop', 'pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
131,93,102,Reckless,Madison Beer,alt z,2021.0,180,0.426,0.386,-6.642,0.14,0.261,204,0.807,0.0363,86,D#/Eb,85,5,2021-07-09--2021-07-16,6711375,3363988,5ajjAnNRh8bxFvaVHzpPjh,2021-06-04 00:00:00,"['alt z', 'dance pop', 'electropop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
132,94,104,Believer,Imagine Dragons,modern rock,2017.0,125,0.78,0.776,-4.374,0.081,0.666,205,0.0622,0.128,86,A#/Bb,88,83,2020-06-26--2020-07-03,6699895,35285425,0pqnGHJpmpxLKifKRmU6WP,2017-06-23 00:00:00,"['modern rock', 'pop', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
133,95,105,"Lemonade (feat. Gunna, Don Toliver & NAV)",Internet Money,pop rap,2020.0,140,0.66,0.799,-6.153,0.111,0.471,196,0.256,0.079,82,C#/Db,2,48,2020-10-16--2020-10-23,6697067,411579,02kDW379Yfd5PzW5A6vuGt,2020-08-14 00:00:00,"['pop rap', 'rap', 'trap']",1,0,1,0,0,0,0,0,0,0,0,0,0,
134,96,106,Talking to the Moon,Bruno Mars,dance pop,2010.0,146,0.606,0.523,-4.754,0.106,0.065,218,0.512,0.0301,83,C#/Db,45,19,2021-04-30--2021-05-07,6660319,32574754,161DnLWsx1i3u1JT05lzqU,2010-10-05 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
135,97,107,Roses - Imanbek Remix,SAINt JHN,melodic rap,2020.0,122,0.719,0.769,-5.472,0.359,0.863,177,0.0143,0.0474,72,G#/Ab,3,83,2020-06-19--2020-06-26,6653690,742692,0zLCBJZSiELJf02ucPP9wb,2020-11-20 00:00:00,"['melodic rap', 'pop rap', 'rap', 'slap house', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
136,98,108,Sal y Perrea,Sech,latin,2021.0,90,0.899,0.786,-0.515,0.299,0.813,217,0.192,0.127,86,A#/Bb,59,11,2021-06-04--2021-06-11,6635076,8758283,5u7twkeask1VIyDeNTElSU,2021-04-15 00:00:00,"['latin', 'panamanian pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,Panama
137,99,109,Fulanito,"Becky G, El Alfa",dance pop,2021.0,112,0.837,0.93,-4.632,0.239,0.821,159,0.256,0.187,86,G,109,3,2021-07-23--2021-07-30,6614072,10356559,59L8x0xy8njj75vzVCPMqg,2021-06-03 00:00:00,"['dance pop', 'latin', 'latin pop', 'latin viral pop', 'pop', 'rap latina', 'reggaeton', 'trap latino']",1,0,0,0,0,0,1,0,0,0,0,0,0,
138,100,111,lovely (with Khalid),Billie Eilish,electropop,2018.0,115,0.296,0.351,-10.109,0.095,0.12,201,0.934,0.0333,86,E,46,83,2020-04-17--2020-04-24,6569547,47014200,0u2P5u6lvoDfwTYjAADbn4,2018-04-19 00:00:00,"['electropop', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,United States
139,101,113,double take,dhruv,chill r&b,2019.0,109,0.434,0.663,-11.177,0.249,0.225,172,0.828,0.0648,86,G#/Ab,113,3,2021-07-23--2021-07-30,6539852,73211,2CVChktEKBsM6v4IfdFU5k,2019-05-24 00:00:00,"['chill r&b', 'nyc pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
140,102,114,Streets,Doja Cat,dance pop,2019.0,90,0.463,0.749,-8.433,0.338,0.189,227,0.21,0.0842,86,B,9,29,2021-02-05--2021-02-12,6502302,8640063,60ynsPSSKe6O3sfwRnIBRf,2019-11-07 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
141,103,115,By Your Side (feat. Tom Grennan),Calvin Harris,dance pop,2021.0,124,0.96,0.733,-3.597,0.287,0.811,190,0.0514,0.0295,85,G,80,8,2021-06-04--2021-06-11,6488622,21942793,0vR2rIVORmgeKiGIgNT0fV,2021-06-04 00:00:00,"['dance pop', 'edm', 'electro house', 'house', 'pop', 'progressive house', 'uk dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
142,103,115,By Your Side (feat. Tom Grennan),Calvin Harris,dance pop,2021.0,124,0.96,0.733,-3.597,0.287,0.811,190,0.0514,0.0295,85,G,80,8,2021-06-04--2021-06-11,6488622,21942793,0vR2rIVORmgeKiGIgNT0fV,2021-06-04 00:00:00,"['dance pop', 'edm', 'electro house', 'house', 'pop', 'progressive house', 'uk dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
143,104,116,MORENA,Luan Santana,sertanejo,2021.0,87,0.731,0.526,-4.662,0.0891,0.476,194,0.18,0.0887,85,B,116,3,2021-07-23--2021-07-30,6469500,5420471,4PQdrXMDHDPl1RczrrlADd,2021-06-17 00:00:00,"['sertanejo', 'sertanejo pop', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,Brazil
144,105,117,Shape of You,Ed Sheeran,pop,2017.0,96,0.652,0.825,-3.183,0.0931,0.931,234,0.581,0.0802,85,C#/Db,80,80,2019-12-27--2020-01-03,6452492,83293380,7qiZfU4dY1lWllzX7mPBI3,2017-03-03 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
145,105,117,Shape of You,Ed Sheeran,pop,2017.0,96,0.652,0.825,-3.183,0.0931,0.931,234,0.581,0.0802,85,C#/Db,80,80,2019-12-27--2020-01-03,6452492,83293380,7qiZfU4dY1lWllzX7mPBI3,2017-03-03 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
146,106,118,Señorita,"Shawn Mendes, Camila Cabello",canadian pop,2019.0,117,0.54,0.759,-6.039,0.0945,0.75,191,0.037,0.0287,82,A,9,83,2019-12-27--2020-01-03,6317487,33879560,0TK2YIli7K1leLovkQiNik,2019-06-21 00:00:00,"['canadian pop', 'dance pop', 'pop', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
147,107,120,Perfect,Ed Sheeran,pop,2017.0,95,0.448,0.599,-6.312,0.106,0.168,264,0.163,0.0232,86,G#/Ab,99,83,2020-07-24--2020-07-31,6278765,83293380,0tgVpDi06FyKpA1z0VMD4v,2017-03-03 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
148,107,120,Perfect,Ed Sheeran,pop,2017.0,95,0.448,0.599,-6.312,0.106,0.168,264,0.163,0.0232,86,G#/Ab,99,83,2020-07-24--2020-07-31,6278765,83293380,0tgVpDi06FyKpA1z0VMD4v,2017-03-03 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
149,108,121,2:50 Remix,"MYA, TINI, Duki",latin pop,2021.0,140,0.812,0.818,-4.425,0.234,0.844,232,0.112,0.0475,85,A,80,5,2021-07-02--2021-07-09,6244011,282045,74znaWw1hmQBusGPSOuTFy,2021-06-21 00:00:00,['latin pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
150,109,122,LA NOCHE DE ANOCHE,"Bad Bunny, ROSALÃA",latin,2020.0,82,0.618,0.856,-4.892,0.0866,0.391,204,0.0303,0.286,86,G,2,35,2020-11-27--2020-12-04,6242863,36142273,2XIc1pqjXV3Cr2BQUGNBck,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
151,110,123,ROCKSTAR (feat. Roddy Ricch),DaBaby,north carolina hip hop,2020.0,90,0.69,0.746,-7.956,0.101,0.497,182,0.247,0.164,86,B,1,67,2020-07-17--2020-07-24,6180056,7593046,7ytR5pFWmSjzHJIeQkgog4,2020-04-17 00:00:00,"['north carolina hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
152,111,124,Heather,Conan Gray,alt z,2020.0,102,0.425,0.357,-7.301,0.322,0.27,199,0.584,0.0333,86,F,12,53,2020-09-04--2020-09-11,6164795,3794081,4xqrdfXkTW4T0RauPLv3WA,2020-03-20 00:00:00,"['alt z', 'bedroom pop', 'electropop', 'indie pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
153,112,125,you broke me first,Tate McRae,alt z,2020.0,124,0.373,0.667,-9.389,0.0906,0.0823,170,0.785,0.05,86,E,13,55,2020-10-16--2020-10-23,6152121,1647262,45bE4HXI0AwGZXfZtMp8JR,2020-04-17 00:00:00,"['alt z', 'dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
154,113,126,The Nights,Avicii,dance pop,2014.0,126,0.835,0.527,-5.298,0.249,0.654,177,0.0166,0.0433,85,F#/Gb,126,18,2021-07-23--2021-07-30,6136340,20270895,0ct6r3EGTcMLPtrXHDvVjc,2014-01-01 00:00:00,"['dance pop', 'edm', 'pop', 'pop dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,Sweden
155,114,127,Riptide,Vance Joy,folk-pop,2014.0,102,0.731,0.484,-6.694,0.151,0.51,205,0.431,0.0379,78,C#/Db,122,37,2021-07-16--2021-07-23,6089242,2421254,3JvrhDOgAt6p7K8mDyZwRd,2014-09-09 00:00:00,"['folk-pop', 'modern rock', 'pop', 'pop rock']",1,0,0,0,0,0,0,0,0,0,1,0,0,Australia
156,115,128,Smells Like Teen Spirit,Nirvana,grunge,1991.0,117,0.912,0.502,-4.556,0.106,0.72,302,2.55e-05,0.0564,77,C#/Db,128,30,2021-07-23--2021-07-30,6065267,13261089,5ghIJDpPoe3CfHMGu71E6T,1991-09-26 00:00:00,"['grunge', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
157,115,128,Smells Like Teen Spirit,Nirvana,grunge,1991.0,117,0.912,0.502,-4.556,0.106,0.72,302,2.55e-05,0.0564,77,C#/Db,128,30,2021-07-23--2021-07-30,6065267,13261089,5ghIJDpPoe3CfHMGu71E6T,1991-09-26 00:00:00,"['grunge', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
158,115,128,Smells Like Teen Spirit,Nirvana,grunge,1991.0,117,0.912,0.502,-4.556,0.106,0.72,302,2.55e-05,0.0564,77,C#/Db,128,30,2021-07-23--2021-07-30,6065267,13261089,5ghIJDpPoe3CfHMGu71E6T,1991-09-26 00:00:00,"['grunge', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,France
159,115,128,Smells Like Teen Spirit,Nirvana,grunge,1991.0,117,0.912,0.502,-4.556,0.106,0.72,302,2.55e-05,0.0564,77,C#/Db,128,30,2021-07-23--2021-07-30,6065267,13261089,5ghIJDpPoe3CfHMGu71E6T,1991-09-26 00:00:00,"['grunge', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Yugoslavia
160,115,128,Smells Like Teen Spirit,Nirvana,grunge,1991.0,117,0.912,0.502,-4.556,0.106,0.72,302,2.55e-05,0.0564,77,C#/Db,128,30,2021-07-23--2021-07-30,6065267,13261089,5ghIJDpPoe3CfHMGu71E6T,1991-09-26 00:00:00,"['grunge', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
161,115,128,Smells Like Teen Spirit,Nirvana,grunge,1991.0,117,0.912,0.502,-4.556,0.106,0.72,302,2.55e-05,0.0564,77,C#/Db,128,30,2021-07-23--2021-07-30,6065267,13261089,5ghIJDpPoe3CfHMGu71E6T,1991-09-26 00:00:00,"['grunge', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Finland
162,116,129,enough for you,Olivia Rodrigo,pop,2021.0,88,0.259,0.638,-10.706,0.219,0.269,203,0.753,0.0898,86,G,11,10,2021-05-21--2021-05-28,6040918,6266514,2TOzTqQXNmR2zDJXihjZ2e,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
163,117,130,Daddy Issues,The Neighbourhood,modern alternative rock,2015.0,85,0.521,0.588,-9.461,0.123,0.337,261,0.0678,0.0329,85,A#/Bb,99,42,2021-02-05--2021-02-12,6014443,6662605,5E30LdtzQTGqRvNd7l6kG5,2015-10-30 00:00:00,"['modern alternative rock', 'modern rock', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
164,117,130,Daddy Issues,The Neighbourhood,modern alternative rock,2015.0,85,0.521,0.588,-9.461,0.123,0.337,261,0.0678,0.0329,85,A#/Bb,99,42,2021-02-05--2021-02-12,6014443,6662605,5E30LdtzQTGqRvNd7l6kG5,2015-10-30 00:00:00,"['modern alternative rock', 'modern rock', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
165,118,132,Miss The Rage (feat. Playboi Carti),Trippie Redd,melodic rap,2021.0,77,0.859,0.584,-5.616,0.847,0.369,237,0.0144,0.121,85,G#/Ab,19,12,2021-05-07--2021-05-14,5952490,6430522,2BITQ360Knh6qNAOqR7Dyq,2021-05-07 00:00:00,"['melodic rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
166,119,133,Memories,Maroon 5,pop,2021.0,91,0.327,0.775,-7.241,0.0821,0.595,190,0.841,0.0557,85,B,4,83,2019-12-27--2020-01-03,5928329,32262679,4cktbXiXOapiLBMprHFErI,2021-06-11 00:00:00,"['pop', 'pop rock']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
167,120,134,Another Love,Tom Odell,pop,2013.0,123,0.537,0.445,-8.532,0.0941,0.131,245,0.695,0.04,67,E,76,16,2021-04-23--2021-04-30,5914661,1838616,7otCGmgp9h4CsR2LhwB6gt,2013-09-17 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
168,121,135,Here's Your Perfect,Jamie Miller,pop soul,2021.0,113,0.454,0.558,-5.335,0.146,0.424,159,0.499,0.0551,85,F#/Gb,135,4,2021-07-23--2021-07-30,5912784,64288,2aTKrdenCq5qBOoJPFdn4P,2021-04-30 00:00:00,['pop soul'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
169,122,136,Take Me To Church,Hozier,irish singer-songwriter,2014.0,129,0.664,0.566,-5.303,0.116,0.437,242,0.634,0.0464,74,E,108,37,2021-04-30--2021-05-07,5907750,4781906,1CS7Sd1u5tWkstBhpssyjP,2014-09-19 00:00:00,"['irish singer-songwriter', 'modern rock', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Ireland
170,123,137,Little Bit of Love,Tom Grennan,modern rock,2021.0,107,0.706,0.689,-4.48,0.105,0.623,227,0.0833,0.0312,80,C#/Db,110,13,2021-07-02--2021-07-09,5848466,261225,2sX7lJXsOYGP1Us6CqM9t1,2021-01-08 00:00:00,"['modern rock', 'uk pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
171,124,138,Ficha Limpa,Gusttavo Lima,sertanejo,2021.0,135,0.732,0.774,-4.227,0.243,0.734,193,0.108,0.0308,85,A,138,4,2021-07-23--2021-07-30,5847975,12969190,5SwyN9hzmWjBsINlif8li8,2021-06-19 00:00:00,"['sertanejo', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,Brazil
172,125,139,Up,Cardi B,dance pop,2021.0,166,0.795,0.868,-6.044,0.0461,0.819,157,0.0012,0.269,83,B,14,25,2021-03-26--2021-04-02,5845156,17353707,1XXimziG1uhM0eDNCZCrUl,2021-02-05 00:00:00,"['dance pop', 'pop', 'pop rap', 'rap']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
173,126,140,Hawái,Maluma,latin,2020.0,180,0.788,0.766,-3.128,0.142,0.609,201,0.105,0.312,77,F#/Gb,2,52,2020-09-04--2020-09-11,5769714,26769304,0GzuHFG4Ql6DoyxFRnIk3F,2020-11-05 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,Colombia
174,127,141,New Normal,Khalid,pop,2021.0,92,0.534,0.39,-9.575,0.184,0.244,199,0.0807,0.0709,79,C,141,1,2021-07-23--2021-07-30,5768653,14187747,2CIYemjFXdmCWpJnfbtrD6,2021-07-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
175,127,141,New Normal,Khalid,pop,2021.0,92,0.534,0.39,-9.575,0.184,0.244,199,0.0807,0.0709,79,C,141,1,2021-07-23--2021-07-30,5768653,14187747,2CIYemjFXdmCWpJnfbtrD6,2021-07-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
176,127,141,New Normal,Khalid,pop,2021.0,92,0.534,0.39,-9.575,0.184,0.244,199,0.0807,0.0709,79,C,141,1,2021-07-23--2021-07-30,5768653,14187747,2CIYemjFXdmCWpJnfbtrD6,2021-07-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
177,127,141,New Normal,Khalid,pop,2021.0,92,0.534,0.39,-9.575,0.184,0.244,199,0.0807,0.0709,79,C,141,1,2021-07-23--2021-07-30,5768653,14187747,2CIYemjFXdmCWpJnfbtrD6,2021-07-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,France
178,127,141,New Normal,Khalid,pop,2021.0,92,0.534,0.39,-9.575,0.184,0.244,199,0.0807,0.0709,79,C,141,1,2021-07-23--2021-07-30,5768653,14187747,2CIYemjFXdmCWpJnfbtrD6,2021-07-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
179,128,142,Bohemian Rhapsody - Remastered 2011,Queen,classic rock,1975.0,144,0.402,0.392,-9.961,0.243,0.228,355,0.288,0.0536,74,C,81,81,2019-12-27--2020-01-03,5756583,35888760,7tFiyTwD0nx5a1eklYtX2J,1975-11-21 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
180,128,142,Bohemian Rhapsody - Remastered 2011,Queen,classic rock,1975.0,144,0.402,0.392,-9.961,0.243,0.228,355,0.288,0.0536,74,C,81,81,2019-12-27--2020-01-03,5756583,35888760,7tFiyTwD0nx5a1eklYtX2J,1975-11-21 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
181,128,142,Bohemian Rhapsody - Remastered 2011,Queen,classic rock,1975.0,144,0.402,0.392,-9.961,0.243,0.228,355,0.288,0.0536,74,C,81,81,2019-12-27--2020-01-03,5756583,35888760,7tFiyTwD0nx5a1eklYtX2J,1975-11-21 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Vietnam
182,128,142,Bohemian Rhapsody - Remastered 2011,Queen,classic rock,1975.0,144,0.402,0.392,-9.961,0.243,0.228,355,0.288,0.0536,74,C,81,81,2019-12-27--2020-01-03,5756583,35888760,7tFiyTwD0nx5a1eklYtX2J,1975-11-21 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Japan
183,129,143,Bandido,"Myke Towers, Juhn",trap latino,2020.0,168,0.617,0.713,-4.637,0.0962,0.682,233,0.122,0.0887,85,G#/Ab,5,32,2021-02-05--2021-02-12,5734402,6150675,1xK1Gg9SxG8fy2Ya373oqb,2020-12-10 00:00:00,['trap latino'],0,0,1,0,0,0,0,0,0,0,0,0,0,
184,130,144,Paradise (feat. Dermot Kennedy),MEDUZA,dance pop,2020.0,124,0.595,0.632,-7.644,0.209,0.435,168,0.0689,0.0401,85,G#/Ab,25,39,2021-02-05--2021-02-12,5693848,441674,6ft4hAq6yde8jPZY2i5zLr,2020-10-30 00:00:00,"['dance pop', 'edm', 'pop dance', 'pop house', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
185,131,145,goosebumps,Travis Scott,rap,2021.0,125,0.593,0.841,-7.846,0.124,0.808,163,0.418,0.0379,87,C#/Db,13,83,2020-04-24--2020-05-01,5691540,17719446,5uEYRdEIh9Bo4fpjDd4Na9,2021-01-15 00:00:00,"['rap', 'slap house']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
186,132,146,Wasted Love (feat. Lagique),Ofenbach,edm,2021.0,122,0.855,0.734,-4.578,0.0901,0.54,140,0.0821,0.135,85,F#/Gb,90,18,2021-05-28--2021-06-04,5690260,432581,2pPO9YecZimmuVQfIzfV6U,2021-01-08 00:00:00,"['edm', 'new french touch', 'pop dance', 'tropical house']",0,0,0,0,0,0,1,0,0,1,0,0,0,France
187,133,147,KESI - Remix,"Camilo, Shawn Mendes",colombian pop,2021.0,123,0.815,0.871,-4.439,0.094,0.823,177,0.127,0.0477,83,E,100,2,2021-07-16--2021-07-23,5682062,10561047,0IqCoZ168iRc9LqfrYgpZy,2021-07-14 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
188,134,148,Shallow,"Lady Gaga, Bradley Cooper",dance pop,2018.0,96,0.385,0.572,-6.362,0.231,0.323,216,0.371,0.0308,83,G,59,83,2020-01-03--2020-01-10,5672480,18572085,2VxeLyX666F8uXCJ0dZF8B,2018-10-05 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
189,135,149,Tell Em,"Cochise, $NOT",plugg,2021.0,158,0.717,0.672,-7.476,0.398,0.473,181,0.103,0.226,85,F,110,9,2021-05-28--2021-06-04,5668576,159647,7nc7mlSdWYeFom84zZ8Wr8,2021-05-28 00:00:00,"['plugg', 'vapor trap', 'viral rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
190,136,151,Counting Stars,OneRepublic,dance pop,2014.0,122,0.705,0.664,-4.972,0.115,0.477,258,0.0654,0.0382,74,C#/Db,147,24,2021-06-18--2021-06-25,5647568,12169108,6sy3LkhNFjJWlaeSMNwQ62,2014-01-01 00:00:00,"['dance pop', 'piano rock', 'pop', 'pop rock']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
191,137,152,Yellow,Coldplay,permanent wave,2000.0,173,0.661,0.429,-7.227,0.234,0.285,267,0.00239,0.0281,85,B,121,32,2021-05-07--2021-05-14,5628703,31151294,3AJwUDP919kvQ9QcozQPxg,2000-07-10 00:00:00,"['permanent wave', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
192,138,155,Wake Me Up,Avicii,dance pop,2013.0,124,0.783,0.532,-5.697,0.161,0.643,248,0.0038,0.0523,84,D,142,23,2021-05-28--2021-06-04,5607285,20270895,0nrRP2bk19rLc0orkWPQk2,2013-01-01 00:00:00,"['dance pop', 'edm', 'pop', 'pop dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,Sweden
193,139,156,Baby Me Atende,"Matheus Fernandes, Dilsinho",forro,2021.0,154,0.792,0.65,-3.825,0.92,0.872,226,0.607,0.0393,83,F#/Gb,128,7,2021-07-09--2021-07-16,5594505,77034,5R9KPXQVeyqsHZoPLMgfNy,2021-02-26 00:00:00,"['forro', 'sertanejo pop']",0,0,0,0,0,1,0,0,0,0,0,0,0,
194,140,158,What You Know Bout Love,Pop Smoke,brooklyn drill,2020.0,84,0.548,0.709,-8.493,0.133,0.543,160,0.65,0.353,85,A#/Bb,6,47,2020-11-06--2020-11-13,5570735,6837946,1tkg4EHVoqnhR6iFEXb60y,2020-07-03 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
195,141,159,Runaway,AURORA,art pop,1905.0,115,0.277,0.521,-10.34,0.103,0.13,249,0.634,0.0356,77,B,19,18,2021-04-23--2021-04-30,5566150,1687399,0TCmhnbMpw5zwPsTvlXTJi,2014,"['art pop', 'norwegian pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Norway
196,141,159,Runaway,AURORA,art pop,1905.0,115,0.277,0.521,-10.34,0.103,0.13,249,0.634,0.0356,77,B,19,18,2021-04-23--2021-04-30,5566150,1687399,0TCmhnbMpw5zwPsTvlXTJi,2014,"['art pop', 'norwegian pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Japan
197,142,160,Red Light Green Light,DaBaby,north carolina hip hop,2021.0,120,0.656,0.933,-5.85,0.161,0.934,160,0.129,0.322,84,D,121,5,2021-07-09--2021-07-16,5493760,7593046,1YDebgap5OFwXEBG18NJvy,2021-06-25 00:00:00,"['north carolina hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
198,143,161,Ball If I Want To,DaBaby,north carolina hip hop,2021.0,140,0.669,0.902,-5.049,0.0728,0.628,113,0.161,0.457,84,C#/Db,120,5,2021-06-18--2021-06-25,5478055,7593046,0cu0rhnlCnJ7JIeHRiLpj3,2021-06-18 00:00:00,"['north carolina hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
199,144,162,Lucid Dreams,Juice WRLD,chicago rap,2018.0,84,0.566,0.511,-7.23,0.34,0.218,240,0.349,0.2,85,F#/Gb,31,83,2019-12-27--2020-01-03,5477563,19085118,285pBltuF7vW8TeWk8hdRR,2018-12-10 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
200,145,163,Calling My Phone,"Lil Tjay, 6LACK",brooklyn drill,2021.0,105,0.393,0.907,-7.636,0.135,0.202,206,0.451,0.0539,85,E,4,24,2021-02-12--2021-02-19,5467753,3553442,3J8EOeKLTLXORtWPpOU5bE,2021-04-02 00:00:00,"['brooklyn drill', 'melodic rap', 'nyc rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
201,146,166,Cover Me In Sunshine,"P!nk, Willow Sage Hart",dance pop,2021.0,160,0.594,0.476,-6.879,0.0785,0.314,142,0.0599,0.135,83,F,59,18,2021-05-07--2021-05-14,5434073,11477164,6Tio0ZoDeSQnI7EBAqWer2,2021-02-12 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
202,147,167,For The Night (feat. Lil Baby & DaBaby),Pop Smoke,brooklyn drill,2020.0,126,0.586,0.823,-6.606,0.193,0.347,191,0.114,0.2,84,F#/Gb,7,56,2020-10-02--2020-10-09,5431375,6837946,0PvFJmanyNQMseIFrU708S,2020-07-03 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
203,148,168,"1 step forward, 3 steps back",Olivia Rodrigo,pop,2021.0,169,0.203,0.473,-12.627,0.126,0.419,164,0.941,0.102,85,D,13,10,2021-05-21--2021-05-28,5420003,6266514,4wcBRRpIfesgcyUtis7PEg,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
204,149,169,WAP (feat. Megan Thee Stallion),Cardi B,dance pop,2020.0,133,0.454,0.935,-7.509,0.0824,0.357,188,0.0194,0.375,84,C#/Db,1,51,2020-09-11--2020-09-18,5386268,17353707,4Oun2ylbjFKMPTiaSbbCih,2020-08-07 00:00:00,"['dance pop', 'pop', 'pop rap', 'rap']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
205,150,170,Mr. Brightside,The Killers,dance rock,2004.0,148,0.924,0.356,-3.74,0.0953,0.232,223,0.00101,0.0808,75,C#/Db,155,22,2021-07-02--2021-07-09,5382191,6118063,7oK9VyNzrYvRFo7nQEYkWN,2004-06-15 00:00:00,"['dance rock', 'modern rock', 'permanent wave', 'rock']",0,1,0,0,0,0,1,0,0,0,0,0,0,United States
206,150,170,Mr. Brightside,The Killers,dance rock,2004.0,148,0.924,0.356,-3.74,0.0953,0.232,223,0.00101,0.0808,75,C#/Db,155,22,2021-07-02--2021-07-09,5382191,6118063,7oK9VyNzrYvRFo7nQEYkWN,2004-06-15 00:00:00,"['dance rock', 'modern rock', 'permanent wave', 'rock']",0,1,0,0,0,0,1,0,0,0,0,0,0,
207,150,170,Mr. Brightside,The Killers,dance rock,2004.0,148,0.924,0.356,-3.74,0.0953,0.232,223,0.00101,0.0808,75,C#/Db,155,22,2021-07-02--2021-07-09,5382191,6118063,7oK9VyNzrYvRFo7nQEYkWN,2004-06-15 00:00:00,"['dance rock', 'modern rock', 'permanent wave', 'rock']",0,1,0,0,0,0,1,0,0,0,0,0,0,Uruguay
208,150,170,Mr. Brightside,The Killers,dance rock,2004.0,148,0.924,0.356,-3.74,0.0953,0.232,223,0.00101,0.0808,75,C#/Db,155,22,2021-07-02--2021-07-09,5382191,6118063,7oK9VyNzrYvRFo7nQEYkWN,2004-06-15 00:00:00,"['dance rock', 'modern rock', 'permanent wave', 'rock']",0,1,0,0,0,0,1,0,0,0,0,0,0,United States
209,150,170,Mr. Brightside,The Killers,dance rock,2004.0,148,0.924,0.356,-3.74,0.0953,0.232,223,0.00101,0.0808,75,C#/Db,155,22,2021-07-02--2021-07-09,5382191,6118063,7oK9VyNzrYvRFo7nQEYkWN,2004-06-15 00:00:00,"['dance rock', 'modern rock', 'permanent wave', 'rock']",0,1,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
210,150,170,Mr. Brightside,The Killers,dance rock,2004.0,148,0.924,0.356,-3.74,0.0953,0.232,223,0.00101,0.0808,75,C#/Db,155,22,2021-07-02--2021-07-09,5382191,6118063,7oK9VyNzrYvRFo7nQEYkWN,2004-06-15 00:00:00,"['dance rock', 'modern rock', 'permanent wave', 'rock']",0,1,0,0,0,0,1,0,0,0,0,0,0,Australia
211,151,171,Every Breath You Take,The Police,album rock,1983.0,117,0.452,0.82,-9.796,0.0714,0.74,254,0.543,0.0348,83,C#/Db,144,27,2021-04-02--2021-04-09,5379704,4339245,1JSTJqkT5qHq8MDJnJbRE1,1983-06-17 00:00:00,"['album rock', 'art rock', 'classic rock', 'mellow gold', 'new wave', 'permanent wave', 'rock', 'soft rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
212,152,172,Dreams - 2004 Remaster,Fleetwood Mac,album rock,1977.0,120,0.492,0.828,-9.744,0.128,0.789,258,0.0644,0.0276,84,C,20,44,2020-10-09--2020-10-16,5378971,6930669,0ofHAoxe9vBkTCp2UQIavz,1977-02-04 00:00:00,"['album rock', 'classic rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
213,153,173,Say You Won't Let Go,James Arthur,pop,2016.0,85,0.557,0.358,-7.398,0.0902,0.494,212,0.695,0.059,84,A#/Bb,94,82,2021-02-12--2021-02-19,5375426,8441598,5uCax9HTNlzGybIStD3vDh,2016-10-28 00:00:00,"['pop', 'post-teen pop', 'talent show', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
214,153,173,Say You Won't Let Go,James Arthur,pop,2016.0,85,0.557,0.358,-7.398,0.0902,0.494,212,0.695,0.059,84,A#/Bb,94,82,2021-02-12--2021-02-19,5375426,8441598,5uCax9HTNlzGybIStD3vDh,2016-10-28 00:00:00,"['pop', 'post-teen pop', 'talent show', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
215,154,174,Wild Side (feat. Cardi B),Normani,dance pop,2021.0,110,0.576,0.74,-6.744,0.104,0.315,210,0.0249,0.146,75,F#/Gb,110,2,2021-07-16--2021-07-23,5366242,1304510,2vXgyN14LX2zl7JEASw242,2021-07-22 00:00:00,"['dance pop', 'pop', 'pop rap', 'post-teen pop', 'r&b', 'urban contemporary']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
216,155,175,Bout A Million (feat. 42 Dugg & 21 Savage),Pop Smoke,brooklyn drill,2021.0,145,0.67,0.716,-6.995,0.13,0.411,204,0.526,0.101,81,C,65,2,2021-07-16--2021-07-23,5315734,6837946,4LaGu95Ui2s4vprSQYWUAZ,2021-07-16 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
217,156,176,Demeanor (feat. Dua Lipa),Pop Smoke,brooklyn drill,2021.0,100,0.608,0.675,-6.934,0.11,0.728,185,0.336,0.103,81,D#/Eb,72,2,2021-07-16--2021-07-23,5245618,6837946,3DMs7bahbQTnoxCjgP7qoK,2021-07-16 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
218,157,177,death bed (coffee for your head),"Powfu, beabadoobee",sad rap,2020.0,144,0.431,0.726,-8.765,0.696,0.348,174,0.731,0.135,85,G#/Ab,4,76,2020-06-19--2020-06-26,5238547,924083,7eJMfftS33KTjuF7lTsMCx,2020-02-08 00:00:00,['sad rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
219,158,178,Our Song,"Anne-Marie, Niall Horan",dance pop,2021.0,81,0.759,0.595,-4.245,0.172,0.515,164,0.141,0.0423,83,B,100,9,2021-05-21--2021-05-28,5235335,8148393,5zqObw7wjBgL9TDiAymxPn,2021-05-21 00:00:00,"['dance pop', 'pop', 'pop dance', 'post-teen pop', 'tropical house', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
220,159,179,Another One Bites The Dust - Remastered 2011,Queen,classic rock,1980.0,110,0.528,0.933,-6.472,0.163,0.756,215,0.112,0.162,74,F,138,22,2021-04-02--2021-04-09,5204983,35888760,57JVGBtBLCfHw2muk5416J,1980-06-27 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
221,159,179,Another One Bites The Dust - Remastered 2011,Queen,classic rock,1980.0,110,0.528,0.933,-6.472,0.163,0.756,215,0.112,0.162,74,F,138,22,2021-04-02--2021-04-09,5204983,35888760,57JVGBtBLCfHw2muk5416J,1980-06-27 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
222,159,179,Another One Bites The Dust - Remastered 2011,Queen,classic rock,1980.0,110,0.528,0.933,-6.472,0.163,0.756,215,0.112,0.162,74,F,138,22,2021-04-02--2021-04-09,5204983,35888760,57JVGBtBLCfHw2muk5416J,1980-06-27 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Vietnam
223,159,179,Another One Bites The Dust - Remastered 2011,Queen,classic rock,1980.0,110,0.528,0.933,-6.472,0.163,0.756,215,0.112,0.162,74,F,138,22,2021-04-02--2021-04-09,5204983,35888760,57JVGBtBLCfHw2muk5416J,1980-06-27 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Japan
224,160,180,One Dance,"Drake, WizKid, Kyla",canadian hip hop,2016.0,104,0.625,0.792,-5.609,0.329,0.37,174,0.00776,0.0536,84,C#/Db,149,14,2021-05-28--2021-06-04,5178490,56308172,1zi7xx7UVEFkmKfv06H8x0,2016-05-06 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
225,161,181,Adore You,Harry Styles,pop,2019.0,99,0.771,0.676,-3.675,0.102,0.569,208,0.0237,0.0483,84,G#/Ab,15,83,2019-12-27--2020-01-03,5166847,16112621,3jjujdWJ72nww5eGnfs2E7,2019-12-13 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
226,162,183,Fancy Like,Walker Hayes,contemporary country,2021.0,80,0.76,0.649,-6.487,0.317,0.843,162,0.114,0.0574,83,C#/Db,183,1,2021-07-23--2021-07-30,5145432,304995,3ZozFqJJlDBNIm4xqxn2ZD,2021-06-04 00:00:00,"['contemporary country', 'country', 'country road', 'modern country rock']",0,0,0,0,0,0,0,1,0,0,0,0,0,United States
227,163,184,Cúrame,Rauw Alejandro,puerto rican pop,2021.0,102,0.625,0.765,-3.599,0.112,0.262,165,0.584,0.0548,85,A,184,1,2021-07-23--2021-07-30,5104206,6080597,3PwRuzdphgedcWVUOVYJ7I,2021-06-25 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
228,164,185,All of Me,John Legend,neo soul,2013.0,120,0.264,0.422,-7.064,0.132,0.331,270,0.922,0.0322,84,G#/Ab,110,78,2021-02-12--2021-02-19,5103014,5799137,3U4isOIWM3VvDubwSI3y7a,2013-08-30 00:00:00,"['neo soul', 'pop', 'pop soul', 'r&b', 'urban contemporary']",0,0,0,0,0,0,0,0,1,0,0,0,0,United States
229,165,186,Martin & Gina,Polo G,chicago rap,2020.0,94,0.534,0.832,-7.813,0.165,0.116,133,0.345,0.253,85,C#/Db,80,41,2021-04-23--2021-04-30,5098609,4840346,1VLtjHwRWOVJiE5Py7JxoQ,2020-05-15 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
230,166,187,Dior,Pop Smoke,brooklyn drill,2019.0,142,0.805,0.548,-5.732,0.408,0.648,217,0.212,0.351,83,G,40,65,2020-07-03--2020-07-10,5092354,6837946,79s5XnCN4TJKTVMSmOx8Ep,2019-07-26 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
231,167,188,Best Friend (feat. Doja Cat),Saweetie,cali rap,2021.0,94,0.766,0.84,-4.12,0.0684,0.402,156,0.00302,0.136,83,E,45,29,2021-04-16--2021-04-23,5090062,1254432,2etHQJxIbV0soyPhelVs9Y,2021-01-07 00:00:00,"['cali rap', 'dance pop', 'pop', 'pop rap', 'trap queen']",0,0,1,0,0,0,0,0,0,0,0,0,0,
232,168,189,The Hills,The Weeknd,canadian contemporary r&b,2015.0,113,0.564,0.585,-7.063,0.135,0.137,243,0.0671,0.0515,84,C,52,22,2021-02-05--2021-02-12,5068864,35305637,7fBv7CLKzipRk6EC6TWHOB,2015-08-28 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
233,169,190,Good Days,SZA,pop,2020.0,121,0.655,0.436,-8.37,0.688,0.412,280,0.499,0.0583,84,C#/Db,5,31,2021-01-22--2021-01-29,5065132,5881963,3YJJjQPAbDT7mGpX3WtQ9A,2020-12-25 00:00:00,"['pop', 'pop rap', 'r&b']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
234,170,191,Kiss My (Uh Oh),"Anne-Marie, Little Mix",dance pop,2021.0,104,0.878,0.638,-3.639,0.308,0.481,177,0.0151,0.0484,78,F,191,1,2021-07-23--2021-07-30,5063181,8148393,0MWiSBKm8Avs8iDIxcertp,2021-07-23 00:00:00,"['dance pop', 'pop', 'pop dance', 'post-teen pop', 'tropical house', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
235,171,192,De Museo,Bad Bunny,latin,2021.0,132,0.494,0.592,-10.618,0.13,0.231,210,0.237,0.0747,83,E,64,3,2021-07-09--2021-07-16,5016125,36142273,267NGliXM8YLVZiKAD9Otm,2021-07-06 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
236,172,193,7 rings,Ariana Grande,dance pop,2019.0,140,0.317,0.778,-10.732,0.0881,0.327,179,0.592,0.334,85,C#/Db,41,81,2019-12-27--2020-01-03,5002227,67158068,6ocbgoVGwYJhOv1GgI9NsF,2019-02-08 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
237,173,195,Não Nasceu pra Namorar,"MC Zaquin, MC Rick",funk bh,2021.0,83,0.448,0.525,-4.075,0.0922,0.527,141,0.14,0.0443,84,C#/Db,149,5,2021-07-09--2021-07-16,4978559,130627,6pQKUKBpwr6GhfhcFFFozo,2021-02-25 00:00:00,"['funk bh', 'funk carioca']",0,0,1,0,0,0,0,0,0,0,0,0,0,
238,174,196,Breaking Me,"Topic, A7S",dance pop,2019.0,122,0.72,0.789,-5.652,0.129,0.664,167,0.223,0.218,84,G#/Ab,8,71,2020-08-14--2020-08-21,4977498,151832,3H7ihDc1dqLriiWXwsc2po,2019-12-19 00:00:00,"['dance pop', 'edm', 'german dance', 'pop dance', 'pop edm', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,
239,175,197,penhasco.,LuÃsa Sonza,funk carioca,2021.0,77,0.467,0.43,-8.56,0.0933,0.382,187,0.775,0.051,80,G#/Ab,197,1,2021-07-23--2021-07-30,4973937,1909059,5VTqW8raQYnj2avZ27nO2a,2021-07-18 00:00:00,"['funk carioca', 'pop nacional']",0,0,0,0,0,1,0,0,0,0,0,0,0,
240,176,198,Late At Night,Roddy Ricch,melodic rap,2021.0,99,0.403,0.643,-11.254,0.138,0.111,175,0.343,0.41,84,C#/Db,58,8,2021-06-04--2021-06-11,4954899,6603627,1fxYz1s15pyZLsJT0Hdh1m,2021-06-04 00:00:00,"['melodic rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
241,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Netherlands
242,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Germany
243,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
244,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
245,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,New Zealand
246,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Spain
247,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Spain
248,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Netherlands
249,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
250,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
251,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
252,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
253,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
254,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
255,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
256,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
257,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
258,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
259,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
260,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
261,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
262,177,199,Verdansk,Dave,uk hip hop,2021.0,117,0.502,0.961,-8.605,0.145,0.536,183,0.28,0.312,77,D,199,1,2021-07-23--2021-07-30,4950275,1427540,7IPKXYU2rTMnrLW5IZ7ZI5,2021-07-22 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
263,178,200,The Real Slim Shady,Eminem,detroit hip hop,2000.0,105,0.661,0.949,-4.244,0.0454,0.76,285,0.0302,0.0572,84,F,172,12,2021-05-28--2021-06-04,4948965,46785561,3yfqSUWxFvZELEM4PmlwIR,2000-05-23 00:00:00,"['detroit hip hop', 'hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
264,179,201,Tell The Vision (feat. Kanye West & Pusha T),Pop Smoke,brooklyn drill,2021.0,144,0.686,0.662,-8.302,0.349,0.678,215,0.251,0.332,57,G,66,1,2021-07-16--2021-07-23,8859168,6837946,1Eu51GaXEehPMrDMh5QghA,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
265,180,202,Woo Baby (feat. Chris Brown),Pop Smoke,brooklyn drill,2021.0,100,0.672,0.563,-7.226,0.0972,0.284,156,0.359,0.0765,56,A,87,1,2021-07-16--2021-07-23,7371935,6837946,6bsqes8Zg9gUULzuCkMUs0,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
266,181,203,Holy Smokes,"Trippie Redd, Lil Uzi Vert",melodic rap,2021.0,188,0.527,0.437,-6.967,0.153,0.701,182,0.185,0.465,79,F#/Gb,116,1,2021-07-16--2021-07-23,6464206,6430522,3EpF150nXMSNjiH0bbmXIL,2021-07-16 00:00:00,"['melodic rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
267,182,204,More Time,Pop Smoke,brooklyn drill,2021.0,145,0.581,0.628,-8.377,0.152,0.259,121,0.46,0.188,55,D,127,1,2021-07-16--2021-07-23,6238351,6837946,7wAnRqccDr2tzcSKLR4jKl,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
268,183,205,Coupe,Pop Smoke,brooklyn drill,2021.0,136,0.589,0.912,-7.476,0.0795,0.486,124,0.0332,0.2,54,G#/Ab,129,1,2021-07-16--2021-07-23,6161664,6837946,7LB3ilSpX1mSMKKztNTnu2,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
269,184,206,Holiday,KSI,uk hip hop,2021.0,87,0.684,0.356,-7.347,0.101,0.347,194,0.152,0.0878,81,G#/Ab,76,4,2021-06-18--2021-06-25,5883145,2008516,6nV2dFZXpv1JlqDWBeTXRl,2021-06-18 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,France
270,184,206,Holiday,KSI,uk hip hop,2021.0,87,0.684,0.356,-7.347,0.101,0.347,194,0.152,0.0878,81,G#/Ab,76,4,2021-06-18--2021-06-25,5883145,2008516,6nV2dFZXpv1JlqDWBeTXRl,2021-06-18 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
271,184,206,Holiday,KSI,uk hip hop,2021.0,87,0.684,0.356,-7.347,0.101,0.347,194,0.152,0.0878,81,G#/Ab,76,4,2021-06-18--2021-06-25,5883145,2008516,6nV2dFZXpv1JlqDWBeTXRl,2021-06-18 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Czech Republic
272,185,207,Manslaughter (feat. Rick Ross & The-Dream),Pop Smoke,brooklyn drill,2021.0,78,0.623,0.441,-7.331,0.14,0.285,250,0.135,0.0414,55,C#/Db,150,1,2021-07-16--2021-07-23,5822266,6837946,4byRwLo7EmkCNBU6S8G6u0,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
273,186,208,Genius (feat. Lil Tjay & Swae Lee),Pop Smoke,brooklyn drill,2021.0,143,0.667,0.723,-7.524,0.261,0.396,209,0.256,0.351,53,D,159,1,2021-07-16--2021-07-23,5702636,6837946,2mmRtchzDVpCj9LSyexgjS,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
274,187,209,WUSYANAME (feat. Youngboy Never Broke Again & Ty Dolla $ign),"Tyler, The Creator",hip hop,2021.0,142,0.653,0.493,-5.666,0.511,0.852,122,0.269,0.0466,84,C,22,4,2021-06-25--2021-07-02,5696113,6777818,5B0kgjHULYJhAQkK5XsMoC,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
275,188,210,Sommergewitter,Pashanim,german alternative rap,2021.0,92,0.531,0.787,-10.569,0.112,0.721,139,0.132,0.101,84,B,105,4,2021-06-25--2021-07-02,5627519,208554,2H7jZg2HliuQhZjfBblLrZ,2021-06-24 00:00:00,"['german alternative rap', 'german drill', 'german hip hop', 'german trap']",0,0,1,0,1,0,0,0,0,0,0,0,0,
276,189,211,"Body (Remix) [feat. ArrDee, E1 (3x3), ZT (3x3), Bugzy Malone, Buni, Fivio Foreign & Darkoo]","Tion Wayne, Russ Millions",london rap,2021.0,141,0.674,0.883,-8.043,0.0678,0.73,279,0.21,0.357,84,B,17,12,2021-05-07--2021-05-14,5383125,323203,6uvMKqNlrSvcC4NaKnrwjZ,2021-04-22 00:00:00,['london rap'],0,0,0,0,1,0,0,0,0,0,0,0,0,
277,190,212,Brush Em (feat. Rah Swish),Pop Smoke,brooklyn drill,2021.0,72,0.724,0.654,-6.59,0.655,0.717,151,0.106,0.355,54,D#/Eb,180,1,2021-07-16--2021-07-23,5335271,6837946,58aW6yZGFl7rVM7SLfLnLL,2021-07-31 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
278,191,213,AM,"Nio Garcia, Flow La Movie",latin,2021.0,172,0.517,0.83,-6.416,0.0916,0.616,183,0.399,0.333,85,F#/Gb,13,15,2021-05-07--2021-05-14,5288927,2123734,2dNhNlpZAtV4lwAFW45LIv,2021-01-28 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
279,192,214,MI FAI IMPAZZIRE,"BLANCO, Sfera Ebbasta",italian hip hop,2021.0,170,0.844,0.477,-4.87,0.137,0.203,221,0.00273,0.0458,83,B,175,4,2021-07-02--2021-07-09,5242097,127364,1x3Qb8np6S1UvpSLthwEJN,2021-06-17 00:00:00,"['italian hip hop', 'italian pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
280,193,215,Ride It,Regard,dance pop,2019.0,118,0.751,0.88,-4.258,0.106,0.884,158,0.177,0.0874,84,G,20,82,2020-01-03--2020-01-10,5235088,152226,2tnVG71enUj33Ic2nFN6kZ,2019-07-26 00:00:00,"['dance pop', 'edm', 'pop dance', 'pop edm', 'slap house', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,
281,194,217,Shot in the Dark,John Mayer,neo mellow,2021.0,122,0.556,0.741,-9.184,0.103,0.587,250,0.0629,0.0266,76,D,193,1,2021-07-16--2021-07-23,5173308,5178156,239yM7BAQ2CkNc61ogPGXo,2021-07-16 00:00:00,"['neo mellow', 'pop rock', 'singer-songwriter']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
282,194,217,Shot in the Dark,John Mayer,neo mellow,2021.0,122,0.556,0.741,-9.184,0.103,0.587,250,0.0629,0.0266,76,D,193,1,2021-07-16--2021-07-23,5173308,5178156,239yM7BAQ2CkNc61ogPGXo,2021-07-16 00:00:00,"['neo mellow', 'pop rock', 'singer-songwriter']",1,0,0,0,0,0,0,0,0,0,0,0,0,
283,194,217,Shot in the Dark,John Mayer,neo mellow,2021.0,122,0.556,0.741,-9.184,0.103,0.587,250,0.0629,0.0266,76,D,193,1,2021-07-16--2021-07-23,5173308,5178156,239yM7BAQ2CkNc61ogPGXo,2021-07-16 00:00:00,"['neo mellow', 'pop rock', 'singer-songwriter']",1,0,0,0,0,0,0,0,0,0,0,0,0,India
284,195,218,Wrecked,Imagine Dragons,modern rock,2021.0,94,0.56,0.626,-5.82,0.109,0.229,245,0.148,0.0288,83,C,71,3,2021-07-02--2021-07-09,5150909,35285425,2d1MywHy6FwKdzxFuSJnwl,2021-07-02 00:00:00,"['modern rock', 'pop', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
285,196,219,Bipolar,"Mc Davi, Mc Pedrinho, Mc Don Juan",funk carioca,2021.0,125,0.36,0.601,-7.791,0.0882,0.335,277,0.586,0.0877,84,A,79,11,2021-05-28--2021-06-04,5116589,2586114,0qxLQ6opocOGyFnlXqJ53x,2021-04-09 00:00:00,"['funk carioca', 'funk ostentacao', 'funk paulista']",0,0,0,0,0,1,0,0,0,0,0,0,0,
286,197,220,"His & Hers (feat. Don Toliver, Lil Uzi Vert & Gunna)",Internet Money,pop rap,2021.0,135,0.707,0.792,-5.218,0.12,0.408,225,0.116,0.0623,84,G,122,5,2021-05-14--2021-05-21,5110475,411579,2IePEfMAtqWS6rLXXFZIgI,2021-05-13 00:00:00,"['pop rap', 'rap', 'trap']",1,0,1,0,0,0,0,0,0,0,0,0,0,
287,198,221,Follow You,Imagine Dragons,modern rock,2021.0,125,0.732,0.542,-5.956,0.496,0.489,176,0.00209,0.0521,84,A,75,19,2021-03-12--2021-03-19,5097187,35285425,7FdUvDkaE24o3FPIWTvzv2,2021-03-12 00:00:00,"['modern rock', 'pop', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
288,199,222,We're Good,Dua Lipa,dance pop,2021.0,134,0.588,0.722,-5.932,0.183,0.59,166,0.0319,0.0544,83,F#/Gb,22,22,2021-02-12--2021-02-19,6318660,27142474,1diS6nkxMQc3wwC4G1j0bh,2021-02-11 00:00:00,"['dance pop', 'pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
289,200,223,Life Goes On,BTS,k-pop,2020.0,81,0.716,0.566,-5.733,0.37,0.45,208,0.00691,0.0424,84,C#/Db,4,29,2020-11-20--2020-11-27,6142975,37106176,249gnXrbfmV8NG6jTEMSwD,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
290,201,224,911,Sech,latin,2021.0,93,0.71,0.816,-3.728,0.292,0.784,209,0.165,0.0398,89,G,28,23,2021-04-16--2021-04-23,6111108,8758283,27RSJHEA99Y0Vsow7nA37A,2021-07-09 00:00:00,"['latin', 'panamanian pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,Panama
291,202,225,Baila Conmigo (with Rauw Alejandro),Selena Gomez,dance pop,2021.0,150,0.544,0.823,-7.132,0.0966,0.664,187,0.0215,0.0715,84,F,17,24,2021-02-05--2021-02-12,5588217,28909504,079Ey5uxL04AKPQgVQwx5h,2021-03-12 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
292,203,226,The Jackie (with J. Cole & Lil Tjay),Bas,hip hop,2021.0,128,0.474,0.784,-6.139,0.278,0.64,205,0.333,0.0524,76,G#/Ab,164,1,2021-07-09--2021-07-16,5454994,386757,15qKrPi4Kg0z7g9HlwWyeb,2021-07-09 00:00:00,"['hip hop', 'pop rap', 'queens hip hop', 'rap', 'sudanese pop', 'underground hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
293,203,226,The Jackie (with J. Cole & Lil Tjay),Bas,hip hop,2021.0,128,0.474,0.784,-6.139,0.278,0.64,205,0.333,0.0524,76,G#/Ab,164,1,2021-07-09--2021-07-16,5454994,386757,15qKrPi4Kg0z7g9HlwWyeb,2021-07-09 00:00:00,"['hip hop', 'pop rap', 'queens hip hop', 'rap', 'sudanese pop', 'underground hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
294,203,226,The Jackie (with J. Cole & Lil Tjay),Bas,hip hop,2021.0,128,0.474,0.784,-6.139,0.278,0.64,205,0.333,0.0524,76,G#/Ab,164,1,2021-07-09--2021-07-16,5454994,386757,15qKrPi4Kg0z7g9HlwWyeb,2021-07-09 00:00:00,"['hip hop', 'pop rap', 'queens hip hop', 'rap', 'sudanese pop', 'underground hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Spain
295,203,226,The Jackie (with J. Cole & Lil Tjay),Bas,hip hop,2021.0,128,0.474,0.784,-6.139,0.278,0.64,205,0.333,0.0524,76,G#/Ab,164,1,2021-07-09--2021-07-16,5454994,386757,15qKrPi4Kg0z7g9HlwWyeb,2021-07-09 00:00:00,"['hip hop', 'pop rap', 'queens hip hop', 'rap', 'sudanese pop', 'underground hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Netherlands
296,204,227,hope ur ok,Olivia Rodrigo,pop,2021.0,77,0.298,0.443,-12.181,0.103,0.172,210,0.388,0.0644,84,C,22,8,2021-05-21--2021-05-28,5435614,6266514,1zejeOnykpCoyVSit6Bwp3,2021-05-21 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
297,205,228,Faz Amor Comigo Só Hoje - Ao Vivo,"Israel & Rodolffo, Wesley Safadão",sertanejo,2021.0,165,0.922,0.624,-4.628,0.112,0.884,149,0.3,0.0439,82,C#/Db,169,2,2021-07-02--2021-07-09,5269757,1097789,7Kba4OaxQFQ1zlknQUpNqN,2021-05-26 00:00:00,"['sertanejo', 'sertanejo pop', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,
298,206,229,Alcohol-Free,TWICE,k-pop,2021.0,97,0.909,0.688,-1.992,0.0674,0.702,211,0.0474,0.0624,82,G#/Ab,80,5,2021-06-11--2021-06-18,5259503,9987114,0BTaaKT4RMbs5M73tOHX5Y,2021-06-11 00:00:00,"['k-pop', 'k-pop girl group']",1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
299,207,230,WHOLE LOTTA MONEY (feat. Nicki Minaj) - Remix,BIA,escape room,2021.0,81,0.463,0.893,-5.301,0.318,0.591,230,0.199,0.36,80,C#/Db,184,1,2021-07-09--2021-07-16,5186354,151870,67G6iaOw8DZqp1z8STR89R,2021-07-09 00:00:00,"['escape room', 'r&b', 'rap latina', 'trap queen']",1,0,1,0,1,0,0,0,0,0,0,0,0,United States
300,207,230,WHOLE LOTTA MONEY (feat. Nicki Minaj) - Remix,BIA,escape room,2021.0,81,0.463,0.893,-5.301,0.318,0.591,230,0.199,0.36,80,C#/Db,184,1,2021-07-09--2021-07-16,5186354,151870,67G6iaOw8DZqp1z8STR89R,2021-07-09 00:00:00,"['escape room', 'r&b', 'rap latina', 'trap queen']",1,0,1,0,1,0,0,0,0,0,0,0,0,
301,208,231,Memory,"Kane Brown, blackbear",contemporary country,2021.0,113,0.889,0.434,-5.684,0.273,0.845,154,0.395,0.0509,80,A,187,1,2021-07-09--2021-07-16,5173178,3507622,34chhNX59Wo9HMFCsI3K8Y,2021-07-09 00:00:00,"['contemporary country', 'country road']",0,0,0,0,0,0,0,1,0,0,0,0,0,
302,209,232,Me Fije,"Alex Rose, Rauw Alejandro",latin,2021.0,172,0.674,0.76,-4.039,0.0977,0.735,203,0.396,0.0636,83,G,183,4,2021-07-02--2021-07-09,5068677,2166191,6Et5KimMg3IXwD6lJPGmQw,2021-03-18 00:00:00,"['latin', 'reggaeton', 'reggaeton flow', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
303,210,233,"Volta Bebê, Volta Neném","Dj Guuga, DJ Ivis",funk carioca,2021.0,164,0.918,0.583,-3.612,0.0701,0.836,173,0.288,0.0518,79,F#/Gb,71,13,2021-04-30--2021-05-07,5041120,608109,4wQUopWk9Ed7Ng5qpKN5qd,2021-03-27 00:00:00,"['funk carioca', 'funk paulista', 'rave funk']",0,0,0,0,0,1,0,0,0,0,0,0,0,
304,211,234,Aloha,"Maluma, Beéle, Rauw Alejandro, Mambo Kingz, DJ Luian, Darell",latin,2021.0,100,0.712,0.807,-5.757,0.163,0.792,242,0.532,0.1,84,C#/Db,95,13,2021-05-28--2021-06-04,5036030,26769304,5RAIMjdrCEjpjaR5tBATXU,2021-03-05 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
305,212,235,Sexo Virtual,Rauw Alejandro,puerto rican pop,2021.0,180,0.739,0.704,-3.286,0.0856,0.425,209,0.328,0.112,82,G#/Ab,184,2,2021-07-02--2021-07-09,4975786,6080597,0giiXonRhODYy4J1iy4Lb3,2021-06-25 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
306,213,236,Closer,"The Chainsmokers, Halsey",dance pop,2016.0,95,0.524,0.748,-5.599,0.111,0.661,245,0.414,0.0338,84,G#/Ab,141,32,2019-12-27--2020-01-03,4954679,18191658,7BKLCZ1jbUBVqRi2FVlTVw,2016-07-29 00:00:00,"['dance pop', 'edm', 'electropop', 'pop', 'pop dance', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,
307,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
308,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
309,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
310,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Germany
311,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
312,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
313,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
314,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Netherlands
315,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Belgium
316,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
317,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
318,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
319,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,South Korea
320,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Greece
321,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
322,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
323,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
324,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
325,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
326,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
327,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
328,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
329,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
330,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
331,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
332,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
333,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
334,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
335,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
336,214,237,Wonderwall - Remastered,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,194,4,2020-10-09--2020-10-16,4938180,6475631,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
337,215,238,Wasting Time ( feat. Drake ),Brent Faiyaz,dmv rap,2021.0,90,0.717,0.652,-3.751,0.0906,0.377,302,0.0694,0.0581,78,G,101,1,2021-07-02--2021-07-09,6731106,1724414,48WidxP9CqyYtk97pwGZ3c,2021-07-01 00:00:00,"['dmv rap', 'pop', 'r&b', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
338,216,239,I Don't Do Drugs (feat. Ariana Grande),Doja Cat,dance pop,2021.0,77,0.615,0.683,-5.737,0.154,0.45,189,0.222,0.0966,80,F,55,2,2021-06-25--2021-07-02,5912293,8640063,0FFsgUoFibYISzMxuGS61W,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
339,217,240,Renegade (feat. Taylor Swift),Big Red Machine,eau claire indie,2021.0,168,0.708,0.532,-8.121,0.107,0.586,255,0.435,0.0505,77,C,132,1,2021-07-02--2021-07-09,5876058,98503,1aU1wpYBSpP0M6IiihY5Ue,2021-07-02 00:00:00,"['eau claire indie', 'folktronica']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
340,218,241,JUGGERNAUT (feat. Lil Uzi Vert & Pharrell Williams),"Tyler, The Creator",hip hop,2021.0,142,0.571,0.827,-7.949,0.166,0.62,147,0.0195,0.366,80,B,40,2,2021-06-25--2021-07-02,5392334,6777818,7z4xW9WY86uH3gd1V9pfCM,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
341,219,242,All Eyes On Me,Bo Burnham,comic,2021.0,127,0.424,0.352,-10.131,0.0664,0.141,303,0.733,0.0394,81,F#/Gb,152,2,2021-06-25--2021-07-02,5347263,1042079,3rV5y8rcQrwRt9fWGLmjOQ,2021-06-10 00:00:00,['comic'],0,0,0,0,0,1,0,0,0,0,0,0,0,United States
342,220,243,EVERY CHANCE I GET (feat. Lil Baby & Lil Durk),DJ Khaled,hip hop,2021.0,150,0.727,0.477,-4.053,0.108,0.227,237,0.000866,0.286,83,D,101,3,2021-04-30--2021-05-07,5321544,6278835,1EJIcDYXwSqipW5dFe4uJz,2021-04-30 00:00:00,"['hip hop', 'miami hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
343,221,245,Solar Power,Lorde,art pop,2021.0,88,0.47,0.735,-9.405,0.32,0.897,193,0.266,0.1,81,E,25,4,2021-06-11--2021-06-18,5234112,8083566,3KdoeNlEN0BoAKWzaRLNZa,2021-06-10 00:00:00,"['art pop', 'dance pop', 'electropop', 'metropopolis', 'nz pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,New Zealand
344,222,246,Your Power,Billie Eilish,electropop,2021.0,130,0.284,0.632,-14.025,0.233,0.208,246,0.932,0.0801,81,A,4,10,2021-04-30--2021-05-07,5135380,47014200,042Sl6Mn83JHyLEqdK7uI0,2021-07-30 00:00:00,"['electropop', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,United States
345,223,247,Lieben wir,Shirin David,frauenrap,2021.0,96,0.669,0.871,-7.62,0.0795,0.806,156,0.0113,0.329,77,A#/Bb,189,1,2021-07-02--2021-07-09,5029898,558345,49gzU1IS1B6P3GATSZ5eCE,2021-07-01 00:00:00,"['frauenrap', 'german hip hop', 'german pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
346,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
347,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
348,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
349,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
350,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
351,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
352,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
353,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
354,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
355,224,248,Whoopty,CJ,nyc rap,2020.0,140,0.648,0.719,-7.6,0.127,0.66,124,0.2,0.125,81,D#/Eb,8,37,2021-02-05--2021-02-12,5013017,180454,5vGLcdRuSbUhD8ScwsGSdA,2020-08-20 00:00:00,['nyc rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
356,225,249,Batom de Cereja - Ao Vivo,Israel & Rodolffo,sertanejo,2021.0,172,0.908,0.606,-6.201,0.19,0.798,141,0.556,0.0565,83,F#/Gb,55,17,2021-04-16--2021-04-23,5011753,1097789,2MZQAvsA7aZDssppBLRxYp,2021-01-29 00:00:00,"['sertanejo', 'sertanejo pop', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,Brazil
357,226,250,Prisoner (feat. Dua Lipa),Miley Cyrus,dance pop,2020.0,128,0.67,0.781,-3.912,0.0761,0.595,170,0.0103,0.0452,79,D#/Eb,11,33,2020-11-20--2020-11-27,5005018,15770302,5JqZ3oqF00jkT81foAFvqg,2020-11-20 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
358,226,250,Prisoner (feat. Dua Lipa),Miley Cyrus,dance pop,2020.0,128,0.67,0.781,-3.912,0.0761,0.595,170,0.0103,0.0452,79,D#/Eb,11,33,2020-11-20--2020-11-27,5005018,15770302,5JqZ3oqF00jkT81foAFvqg,2020-11-20 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
359,227,251,Stereo Hearts (feat. Adam Levine),Gym Class Heroes,dance pop,2011.0,90,0.795,0.646,-3.293,0.267,0.796,211,0.0319,0.0976,82,A,136,15,2021-04-02--2021-04-09,4992345,1275345,0qOnSQQF0yzuPWsXrQ9paz,2011-11-11 00:00:00,"['dance pop', 'pop rap']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
360,228,252,Reloj,"Rauw Alejandro, Anuel AA",puerto rican pop,2020.0,176,0.537,0.823,-2.639,0.123,0.615,232,0.176,0.209,79,G#/Ab,32,36,2021-01-29--2021-02-05,4980155,6080597,7r9ZhitdQBONTFOiJW5mr8,2020-10-22 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,
361,229,254,"Eladio Carrion: Bzrp Music Sessions, Vol. 40","Bizarrap, Eladio Carrion",argentine hip hop,2021.0,117,0.524,0.783,-6.455,0.271,0.839,165,0.241,0.0554,81,F,101,4,2021-06-11--2021-06-18,4965913,3126961,1VauUM5CBX7nkLcgafQL2B,2021-06-09 00:00:00,"['argentine hip hop', 'pop venezolano', 'trap argentino', 'trap latino']",0,0,1,0,0,0,0,0,0,0,0,0,0,
362,230,255,Do I Wanna Know?,Arctic Monkeys,garage rock,2013.0,85,0.532,0.548,-7.596,0.217,0.405,273,0.186,0.0323,84,F,117,27,2021-02-05--2021-02-12,4938586,12369079,5FVd6KXrgO9B3JPmC8OPst,2013-09-09 00:00:00,"['garage rock', 'permanent wave', 'rock', 'sheffield indie']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
363,231,256,LUMBERJACK,"Tyler, The Creator",hip hop,2021.0,171,0.762,0.386,-6.341,0.527,0.433,139,0.122,0.564,76,A,43,2,2021-06-25--2021-07-02,11756283,6777818,0BiK5BbYNFLb88CCOxBFJe,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
364,232,257,LEMONHEAD (feat. 42 Dugg),"Tyler, The Creator",hip hop,2021.0,137,0.586,0.62,-6.612,0.535,0.487,131,0.155,0.212,78,C#/Db,47,1,2021-06-25--2021-07-02,11380679,6777818,5fbHRCsGpFIOLRtlhCRFDR,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
365,233,258,HOT WIND BLOWS (feat. Lil Wayne),"Tyler, The Creator",hip hop,2021.0,173,0.75,0.371,-5.382,0.482,0.729,156,0.601,0.402,77,G,59,1,2021-06-25--2021-07-02,9889197,6777818,3JJL91ilRV6fXhKqu0FGXs,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
366,234,259,CORSO,"Tyler, The Creator",hip hop,2021.0,98,0.845,0.703,-4.851,0.122,0.745,147,0.169,0.337,77,A#/Bb,63,1,2021-06-25--2021-07-02,9503981,6777818,46oHvXwpEZOFX518we1nJD,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
367,235,260,SWEET / I THOUGHT YOU WANTED TO DANCE (feat. Brent Faiyaz & Fana Hues),"Tyler, The Creator",hip hop,2021.0,140,0.652,0.468,-4.912,0.55,0.39,589,0.333,0.0722,79,C,69,1,2021-06-25--2021-07-02,9142721,6777818,3EG9FJ0ToLfgnc1IG2Z1wz,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
368,236,261,SIR BAUDELAIRE (feat. DJ Drama),"Tyler, The Creator",hip hop,2021.0,128,0.635,0.467,-6.115,0.844,0.51,89,0.314,0.154,75,G,73,1,2021-06-25--2021-07-02,8884283,6777818,4ydmav4vl7hebadtfZtMrg,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
369,237,262,MASSA,"Tyler, The Creator",hip hop,2021.0,157,0.855,0.685,-6.724,0.301,0.46,224,0.329,0.438,74,C#/Db,82,1,2021-06-25--2021-07-02,8218423,6777818,2goHCrsDJaflEwQ930ef0o,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
370,238,263,RUNITUP (feat. Teezo Touchdown),"Tyler, The Creator",hip hop,2021.0,116,0.469,0.665,-7.778,0.219,0.142,230,0.565,0.13,75,A#/Bb,85,1,2021-06-25--2021-07-02,7917707,6777818,13HsOwrwTA5HgLuoaDHncP,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
371,239,264,MANIFESTO (feat. Domo Genesis),"Tyler, The Creator",hip hop,2021.0,92,0.866,0.454,-5.348,0.167,0.518,176,0.121,0.391,73,D,108,1,2021-06-25--2021-07-02,6988886,6777818,6qouBO0wJtYc3k7DfKRUBx,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
372,240,265,Get Into It (Yuh),Doja Cat,dance pop,2021.0,92,0.655,0.912,-6.029,0.0894,0.793,139,0.315,0.162,80,G#/Ab,121,1,2021-06-25--2021-07-02,6503281,8640063,0W6I02J9xcqK8MtSeosEXb,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
373,241,266,WILSHIRE,"Tyler, The Creator",hip hop,2021.0,79,0.712,0.555,-7.446,0.182,0.555,516,0.0451,0.323,73,C#/Db,132,1,2021-06-25--2021-07-02,6268542,6777818,1pbbsI2KGPOMu0HmuGccBu,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
374,242,267,RISE! (feat. DAISY WORLD),"Tyler, The Creator",hip hop,2021.0,108,0.814,0.766,-3.367,0.195,0.481,204,0.044,0.0733,73,D,141,1,2021-06-25--2021-07-02,6034281,6777818,4Hta7Oy5W9HD0UgT1P8PPV,2021-06-25 00:00:00,"['hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
375,243,268,Naked,Doja Cat,dance pop,2021.0,111,0.862,0.733,-5.736,0.131,0.536,224,0.374,0.197,75,G,165,1,2021-06-25--2021-07-02,5527865,8640063,0CsR9Y9SnC6ZWmekmVqSHz,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
376,244,269,Having Our Way (feat. Drake),Migos,atl hip hop,2021.0,126,0.538,0.927,-3.917,0.0945,0.221,279,0.0312,0.116,79,C#/Db,50,3,2021-06-11--2021-06-18,5424579,11690201,2NM0qHzx4Ohy8iXHEEgwlO,2021-06-11 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
377,245,270,Payday (feat. Young Thug),Doja Cat,dance pop,2021.0,169,0.707,0.619,-5.791,0.13,0.558,213,0.0366,0.0499,73,C#/Db,176,1,2021-06-25--2021-07-02,5393789,8640063,2HolBGR6tpiWI80MXoV1dJ,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
378,246,271,Been Like This,Doja Cat,dance pop,2021.0,99,0.531,0.678,-5.029,0.377,0.176,178,0.126,0.0374,74,A#/Bb,179,1,2021-06-25--2021-07-02,5362817,8640063,7y3xU9vEC1s8DSuuoSYKih,2021-06-25 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
379,247,272,MILLE (feat. Orietta Berti),"Fedez, Achille Lauro",italian adult pop,2021.0,184,0.764,0.527,-4.297,0.0273,0.829,176,0.016,0.322,82,D,138,3,2021-06-18--2021-06-25,5341887,1650683,6qdMhG7pRFi0csRlFGvLE4,2021-06-11 00:00:00,"['italian adult pop', 'italian pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
380,248,273,UN DIA (ONE DAY) (Feat. Tainy),"J Balvin, Dua Lipa, Bad Bunny",latin,2020.0,168,0.693,0.571,-8.234,0.173,0.393,233,0.00536,0.0545,83,F#/Gb,10,49,2020-08-14--2020-08-21,5203364,29051363,0EhpEsp4L0oRGM0vmeaN5e,2020-07-24 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
381,249,274,Savage Love (Laxed - Siren Beat),"Jawsh 685, Jason Derulo",nz pop,2020.0,150,0.481,0.767,-8.52,0.269,0.761,172,0.234,0.0803,82,C,1,55,2020-08-07--2020-08-14,5108950,100604,1xQ6trAsedVPCdbtDAmk0c,2020-06-11 00:00:00,['nz pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
382,250,275,Poblado,"Crissin, Totoy El Frio, Natan & Shander",latin,2021.0,93,0.809,0.813,-5.382,0.377,0.646,394,0.102,0.0846,89,D#/Eb,59,6,2021-05-28--2021-06-04,6893939,29051363,1WedZeiezCmCEOzLwhx0hV,2021-06-18 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
383,251,276,Hecha Pa' Mi,Boza,reggaeton,2020.0,100,0.756,0.725,-5.013,0.103,0.828,187,0.362,0.0572,83,E,17,30,2021-01-29--2021-02-05,6308369,278679,3VvA1wSxukMLsvXoXtlwWx,2020-07-31 00:00:00,['reggaeton'],0,0,0,0,0,1,0,0,0,0,0,0,0,
384,252,277,working,"Tate McRae, Khalid",alt z,2021.0,107,0.435,0.783,-7.78,0.0833,0.512,211,0.282,0.0588,80,G,146,1,2021-06-18--2021-06-25,5666770,1647262,31sSFHIe4NaxltVFOEIcTa,2021-06-17 00:00:00,"['alt z', 'dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
385,253,278,Petrouchka (feat. PLK),Soso Maness,francoton,2021.0,134,0.802,0.624,-4.818,0.252,0.818,190,0.0597,0.311,79,F#/Gb,112,3,2021-06-11--2021-06-18,5511544,289437,03y045SZqaC94yfXl1cU4E,2021-06-04 00:00:00,"['francoton', 'french hip hop', 'pop urbaine', 'rap francais', 'rap marseille']",0,0,1,0,0,0,0,0,0,0,0,0,0,France
386,254,279,p r i d e . i s . t h e . d e v i l (with Lil Baby),J. Cole,conscious hip hop,2021.0,89,0.656,0.861,-7.867,0.0986,0.331,219,0.104,0.425,82,E,11,6,2021-05-14--2021-05-21,5430260,14097410,5W8jRrZ6tWrTrqnKRtIQBf,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
387,255,280,m y . l i f e (with 21 Savage & Morray),J. Cole,conscious hip hop,2021.0,140,0.587,0.597,-7.026,0.214,0.0753,219,0.0622,0.137,82,G,6,6,2021-05-14--2021-05-21,5246577,14097410,1D3z6HTiQsNmZxjl7F7eoG,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
388,256,281,Jocelyn Flores,XXXTENTACION,emo rap,2017.0,134,0.391,0.872,-9.144,0.297,0.437,120,0.469,0.242,84,C,96,77,2020-06-26--2020-07-03,5220422,29539807,7m9OqQk4RVRkw9JJdeAw96,2017-08-25 00:00:00,"['emo rap', 'miami hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
389,257,282,No Return (with The Kid LAROI & Lil Durk),Polo G,chicago rap,2021.0,155,0.645,0.479,-7.336,0.0825,0.381,169,0.135,0.302,80,F,66,2,2021-06-11--2021-06-18,5189427,4840346,23OYT3SFtoJqhiAUqktbc1,2021-06-11 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
390,258,283,The Box,Roddy Ricch,melodic rap,2019.0,117,0.586,0.896,-6.687,0.79,0.642,197,0.104,0.0559,84,A#/Bb,1,78,2020-02-07--2020-02-14,5145099,6603627,0nbXyq5TXYPCO7pr3N8S4I,2019-12-06 00:00:00,"['melodic rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
391,259,285,Can't Hold Us - feat. Ray Dalton,Macklemore & Ryan Lewis,modern rock,2012.0,146,0.922,0.641,-4.457,0.0862,0.847,259,0.0291,0.0786,83,D,170,13,2021-04-23--2021-04-30,5085147,2562082,3bidbhpOYeV4knp8AIu8Xn,2012-10-09 00:00:00,"['modern rock', 'pop rap', 'seattle hip hop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
392,260,287,my ex's best friend (with blackbear),Machine Gun Kelly,ohio hip hop,2020.0,125,0.675,0.731,-5.134,0.141,0.298,140,0.00473,0.0434,83,F,39,45,2020-09-25--2020-10-02,5048079,3864419,7kDUspsoYfLkWnZR7qwHZl,2020-09-25 00:00:00,"['ohio hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
393,260,287,my ex's best friend (with blackbear),Machine Gun Kelly,ohio hip hop,2020.0,125,0.675,0.731,-5.134,0.141,0.298,140,0.00473,0.0434,83,F,39,45,2020-09-25--2020-10-02,5048079,3864419,7kDUspsoYfLkWnZR7qwHZl,2020-09-25 00:00:00,"['ohio hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,France
394,261,288,Just the Way You Are,Bruno Mars,dance pop,2010.0,109,0.843,0.637,-5.413,0.0876,0.434,221,0.0151,0.0432,80,F,133,20,2021-04-30--2021-05-07,5043647,32574754,7BqBn9nzAq8spo5e7cZ0dJ,2010-10-05 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
395,262,289,HIGHEST IN THE ROOM,Travis Scott,rap,2019.0,76,0.427,0.598,-8.764,0.21,0.0605,176,0.0546,0.0317,84,G,17,78,2020-04-24--2020-05-01,4975720,17719446,3eekarcy7kvN4yt5ZFzltW,2019-10-04 00:00:00,"['rap', 'slap house']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
396,263,290,Break My Heart,Dua Lipa,dance pop,2020.0,113,0.729,0.73,-3.434,0.349,0.467,222,0.167,0.0884,80,E,7,65,2020-03-27--2020-04-03,4971176,27142474,017PF4Q3l4DBUiWoXk4OWT,2020-03-27 00:00:00,"['dance pop', 'pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
397,264,291,Laugh Now Cry Later (feat. Lil Durk),Drake,canadian hip hop,2020.0,134,0.518,0.761,-8.871,0.107,0.522,262,0.244,0.134,83,C,2,44,2020-08-14--2020-08-21,4916860,56308172,2SAqBLGA283SUiwJ3xOUVI,2020-08-14 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
398,264,291,Laugh Now Cry Later (feat. Lil Durk),Drake,canadian hip hop,2020.0,134,0.518,0.761,-8.871,0.107,0.522,262,0.244,0.134,83,C,2,44,2020-08-14--2020-08-21,4916860,56308172,2SAqBLGA283SUiwJ3xOUVI,2020-08-14 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Chile
399,264,291,Laugh Now Cry Later (feat. Lil Durk),Drake,canadian hip hop,2020.0,134,0.518,0.761,-8.871,0.107,0.522,262,0.244,0.134,83,C,2,44,2020-08-14--2020-08-21,4916860,56308172,2SAqBLGA283SUiwJ3xOUVI,2020-08-14 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Poland
400,264,291,Laugh Now Cry Later (feat. Lil Durk),Drake,canadian hip hop,2020.0,134,0.518,0.761,-8.871,0.107,0.522,262,0.244,0.134,83,C,2,44,2020-08-14--2020-08-21,4916860,56308172,2SAqBLGA283SUiwJ3xOUVI,2020-08-14 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
401,265,292,We Are The People (feat. Bono & The Edge) - Official UEFA EURO 2020 Song,Martin Garrix,dance pop,2021.0,120,0.733,0.66,-4.619,0.17,0.304,217,0.248,0.0359,82,C,175,2,2021-05-14--2021-05-21,4912036,14917926,2iL0W5qi0ivZ9WRXbZ74cS,2021-05-13 00:00:00,"['dance pop', 'dutch edm', 'edm', 'pop', 'pop dance', 'progressive house', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,Netherlands
402,266,293,Ella No Es Tuya - Remix,"Rochy RD, Myke Towers, Nicki Nicole",dembow,2021.0,97,0.611,0.585,-4.132,0.649,0.962,219,0.39,0.288,82,F#/Gb,23,19,2021-03-26--2021-04-02,4911162,319192,5YYW3yRktprLRr47WK219Y,2021-02-03 00:00:00,"['dembow', 'dominican pop', 'rap dominicano', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
403,267,294,In the End,Linkin Park,alternative metal,2000.0,105,0.864,0.556,-5.87,0.209,0.4,217,0.00958,0.0584,83,D#/Eb,176,6,2020-10-09--2020-10-16,4910070,19584111,60a0Rd6pjrkxjPbaKzXjfq,2000-10-24 00:00:00,"['alternative metal', 'nu metal', 'post-grunge', 'rap metal']",0,0,0,1,1,0,0,0,0,0,0,0,0,United States
404,268,295,No Role Modelz,J. Cole,conscious hip hop,2014.0,100,0.521,0.692,-8.465,0.0565,0.463,293,0.301,0.33,84,A#/Bb,119,6,2021-05-14--2021-05-21,4904401,14097410,62vpWI1CHwFy7tMIcSStl8,2014-12-09 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
405,269,296,SICKO MODE,Travis Scott,rap,2018.0,155,0.73,0.834,-3.714,0.124,0.446,313,0.00513,0.222,84,G#/Ab,7,74,2020-04-24--2020-05-01,4898977,17719446,2xLMifQCjDGFmkHkpNLD9h,2018-08-03 00:00:00,"['rap', 'slap house']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
406,270,297,Something Just Like This,"The Chainsmokers, Coldplay",dance pop,2017.0,103,0.635,0.617,-6.769,0.164,0.446,248,0.0498,0.0317,82,B,161,41,2020-06-26--2020-07-03,4862683,18191658,6RUKPb4LETWmmr3iAEQktW,2017-04-07 00:00:00,"['dance pop', 'edm', 'electropop', 'pop', 'pop dance', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,
407,271,298,You,"Regard, Troye Sivan, Tate McRae",dance pop,2021.0,106,0.695,0.691,-5.6,0.0647,0.514,234,0.0592,0.0367,83,C,84,9,2021-04-23--2021-04-30,4846549,152226,2cc8Sw1OnCuA5bV8nqWqpE,2021-04-16 00:00:00,"['dance pop', 'edm', 'pop dance', 'pop edm', 'slap house', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,
408,272,299,Straightenin,Migos,atl hip hop,2021.0,136,0.629,0.847,-5.81,0.152,0.109,256,0.0318,0.102,77,A,84,3,2021-05-14--2021-05-21,7615531,11690201,3X2r2CnHOJeV5YekPTgBnK,2021-05-14 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
409,273,300,GANG GANG (with Lil Wayne),Polo G,chicago rap,2021.0,145,0.563,0.752,-8.066,0.103,0.551,179,0.146,0.209,78,D#/Eb,71,4,2021-05-21--2021-05-28,7506580,4840346,4VW44pawoOHPUjlN7DX5vk,2021-05-21 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
410,274,301,Black Hearted,Polo G,chicago rap,2021.0,168,0.563,0.506,-7.664,0.0856,0.153,191,0.0326,0.411,75,C#/Db,106,1,2021-06-11--2021-06-18,6989528,4840346,25qk9xa71F1POdI4vj7rbi,2021-06-11 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
411,275,302,Lost,Maroon 5,pop,2021.0,143,0.706,0.766,-6.553,0.064,0.766,173,0.223,0.16,79,G,124,1,2021-06-11--2021-06-18,6410263,32262679,18XlJEroUwFo0tLZxscgXE,2021-06-11 00:00:00,"['pop', 'pop rock']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
412,276,303,Avalanche,Migos,atl hip hop,2021.0,126,0.623,0.917,-8.231,0.0833,0.687,207,0.0985,0.135,71,C#/Db,128,1,2021-06-11--2021-06-18,6323268,11690201,4KD0lLJ4OGonZhBeKtct9I,2021-06-11 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
413,277,304,My Head & My Heart,Ava Max,dance pop,2020.0,116,0.934,0.614,-3.709,0.121,0.436,175,0.0697,0.07,83,A,59,18,2021-04-02--2021-04-09,5470147,3911473,1KixkQVDUHggZMU9dUobgm,2020-09-18 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
414,278,305,Malibu (feat. Polo G),Migos,atl hip hop,2021.0,155,0.719,0.831,-6.836,0.0675,0.859,249,0.514,0.235,72,A#/Bb,166,1,2021-06-11--2021-06-18,5456648,11690201,3v1zVVdzNVNt7vmI9VG2gq,2021-06-11 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
415,279,306,GIRL LIKE ME,"Black Eyed Peas, Shakira",dance pop,2020.0,124,0.485,0.965,-8.784,0.0655,0.312,223,0.0206,0.191,82,D,36,26,2021-02-05--2021-02-12,5395181,5963840,1zLBsSVxETQOfINOLYvT5m,2020-11-02 00:00:00,"['dance pop', 'pop', 'pop rap']",1,0,0,0,0,0,1,0,0,0,0,0,0,
416,280,307,Clueless (with Pop Smoke & Fivio Foreign),Polo G,chicago rap,2021.0,140,0.712,0.734,-6.217,0.103,0.674,166,0.391,0.201,74,F#/Gb,179,1,2021-06-11--2021-06-18,5335308,4840346,4CPcZHzSvIBM8AKhdHUwnL,2021-06-11 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
417,281,308,Modern Day,Migos,atl hip hop,2021.0,135,0.629,0.87,-7.598,0.101,0.512,242,0.173,0.279,78,B,181,1,2021-06-11--2021-06-18,5322745,11690201,2Igem6Q4sfvXGJ3JkG7Baw,2021-06-11 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
418,282,310,TE MUDASTE,Bad Bunny,latin,2020.0,92,0.637,0.811,-4.835,0.118,0.471,131,0.234,0.0591,82,A#/Bb,12,29,2020-11-27--2020-12-04,5242347,36142273,5RubKOuDoPn5Kj5TLVxSxY,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
419,283,311,Tipo Gin - Ao Vivo,MC Kevin o Chris,funk 150 bpm,2021.0,95,0.668,0.75,-4.49,0.338,0.786,160,0.78,0.061,81,C,108,6,2021-05-14--2021-05-21,5155238,2753929,4llr8mcoauwrHBtjGb7F9S,2021-04-09 00:00:00,"['funk 150 bpm', 'funk carioca']",0,0,0,0,0,0,0,0,1,0,0,0,0,
420,284,313,SUN GOES DOWN,Lil Nas X,lgbtq+ hip hop,2021.0,174,0.636,0.551,-6.798,0.112,0.148,169,0.0837,0.054,80,D,54,4,2021-05-21--2021-05-28,5125477,5473565,34eF4BoV8FPk0uhAAoqU7h,2021-05-21 00:00:00,"['lgbtq+ hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
421,285,314,Painting Pictures,Polo G,chicago rap,2021.0,78,0.466,0.522,-8.05,0.11,0.459,138,0.331,0.458,72,D#/Eb,195,1,2021-06-11--2021-06-18,5119845,4840346,25uBGaikHi0DhMiGMfuXYE,2021-06-11 00:00:00,['chicago rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
422,286,315,Rain On Me (with Ariana Grande),Lady Gaga,dance pop,2020.0,123,0.855,0.672,-3.764,0.323,0.646,183,0.021,0.0397,79,A,1,55,2020-05-22--2020-05-29,5041656,18572085,24ySl2hOPGCDcxBxFIqWBu,2020-05-22 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
423,287,316,Hats Off (feat. Travis Scott),"Lil Baby, Lil Durk",atl hip hop,2021.0,134,0.65,0.596,-5.167,0.14,0.188,258,0.138,0.337,81,A,97,1,2021-06-04--2021-06-11,7324233,7805880,4lUmnwRybYH7mMzf16xB0y,2021-06-04 00:00:00,"['atl hip hop', 'atl trap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
424,288,317,Last Train Home,John Mayer,neo mellow,2021.0,93,0.831,0.591,-6.612,0.0571,0.678,188,0.235,0.0355,75,E,117,1,2021-06-04--2021-06-11,6439718,5178156,0tgBtQ0ISnMQOKorrN9HLX,2021-07-16 00:00:00,"['neo mellow', 'pop rock', 'singer-songwriter']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
425,288,317,Last Train Home,John Mayer,neo mellow,2021.0,93,0.831,0.591,-6.612,0.0571,0.678,188,0.235,0.0355,75,E,117,1,2021-06-04--2021-06-11,6439718,5178156,0tgBtQ0ISnMQOKorrN9HLX,2021-07-16 00:00:00,"['neo mellow', 'pop rock', 'singer-songwriter']",1,0,0,0,0,0,0,0,0,0,0,0,0,
426,288,317,Last Train Home,John Mayer,neo mellow,2021.0,93,0.831,0.591,-6.612,0.0571,0.678,188,0.235,0.0355,75,E,117,1,2021-06-04--2021-06-11,6439718,5178156,0tgBtQ0ISnMQOKorrN9HLX,2021-07-16 00:00:00,"['neo mellow', 'pop rock', 'singer-songwriter']",1,0,0,0,0,0,0,0,0,0,0,0,0,India
427,289,318,Voice of the Heroes,"Lil Baby, Lil Durk",atl hip hop,2021.0,134,0.65,0.596,-5.167,0.14,0.188,258,0.138,0.337,81,A,126,1,2021-06-04--2021-06-11,6249801,7805880,4lUmnwRybYH7mMzf16xB0y,2021-06-04 00:00:00,"['atl hip hop', 'atl trap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
428,290,319,0X1=LOVESONG (I Know I Love you),"TOMORROW X TOGETHER, Seori",k-pop,2021.0,105,0.836,0.584,-4.925,0.0663,0.484,203,0.0558,0.079,81,C,134,1,2021-06-04--2021-06-11,6040553,4136553,1Z8TPHiKeCUyClxV6WTTIf,2021-05-31 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
429,291,320,a m a r i,J. Cole,conscious hip hop,2021.0,66,0.713,0.725,-6.173,0.617,0.207,149,0.127,0.187,79,E,10,4,2021-05-14--2021-05-21,5645966,14097410,2cnKST6T9qUo2i907lm8zX,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
430,292,321,NEVER LEFT,Lil Tecca,melodic rap,2021.0,82,0.659,0.807,-6.92,0.309,0.438,169,0.0224,0.332,82,B,72,5,2021-05-07--2021-05-14,5552212,4016497,21UkXrc9kD48rNpTMI2ecz,2021-05-06 00:00:00,"['melodic rap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
431,293,322,Solid (feat. Drake),"Young Stoner Life, Young Thug, Gunna",rap,2021.0,126,0.485,0.887,-9.358,0.141,0.328,216,0.0392,0.2,82,B,27,8,2021-04-16--2021-04-23,5347781,61930,6rTInqW3YECMkQsBEHw4sd,2021-04-16 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
432,294,323,La Nota,"Manuel Turizo, Rauw Alejandro, Myke Towers",colombian pop,2020.0,92,0.632,0.736,-4.939,0.349,0.503,217,0.18,0.0648,79,B,21,35,2020-11-06--2020-11-13,5300884,7904381,7ndTONDDRFGiPnnhOzOXxq,2020-10-08 00:00:00,"['colombian pop', 'latin', 'reggaeton', 'reggaeton colombiano', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,
433,295,324,Golden,Harry Styles,pop,2019.0,140,0.838,0.448,-5.257,0.131,0.254,209,0.21,0.0557,83,E,47,32,2020-11-13--2020-11-20,5298893,16112621,45S5WTQEGOB1VHr1Q4FuPl,2019-12-13 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
434,296,325,CORALINE,MÃ¥neskin,indie rock italiano,2021.0,162,0.678,0.363,-4.939,0.324,0.321,301,0.0299,0.0995,81,D,127,2,2021-05-28--2021-06-04,5241813,3377762,7HMz8o0m7ASQ3ImFPfhWTY,2021-03-19 00:00:00,"['indie rock italiano', 'italian pop']",0,1,0,0,1,0,0,0,0,0,0,0,0,
435,297,327,Slumber Party (feat. Princess Nokia),Ashnikko,electropop,2021.0,105,0.398,0.964,-8.981,0.101,0.563,179,0.00151,0.0795,82,B,96,10,2021-04-23--2021-04-30,5113574,1246335,11ZulcYY4lowvcQm4oe3VJ,2021-01-15 00:00:00,"['electropop', 'escape room', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,Latvia
436,297,327,Slumber Party (feat. Princess Nokia),Ashnikko,electropop,2021.0,105,0.398,0.964,-8.981,0.101,0.563,179,0.00151,0.0795,82,B,96,10,2021-04-23--2021-04-30,5113574,1246335,11ZulcYY4lowvcQm4oe3VJ,2021-01-15 00:00:00,"['electropop', 'escape room', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,
437,298,328,Killer (feat. Jack Harlow & Cordae) - Remix,Eminem,detroit hip hop,2021.0,99,0.73,0.924,-6.125,0.113,0.848,237,0.0525,0.274,76,B,170,1,2021-05-28--2021-06-04,5404939,46785561,7zl7kehxesNEo2pYkKXTSe,2021-05-28 00:00:00,"['detroit hip hop', 'hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
438,299,329,Liberdade (Quando o Grave Bate Forte),"Alok, Mc Don Juan, Dj GBR",electro house,2020.0,130,0.789,0.81,-4.032,0.104,0.432,151,0.0254,0.0498,80,F#/Gb,105,7,2021-04-16--2021-04-23,5378350,10334543,2QLbRVzixE282JSQjBz2DG,2020-12-18 00:00:00,"['electro house', 'pop nacional', 'slap house']",0,0,0,0,0,0,0,0,0,1,0,0,0,
439,300,330,All Girls Are The Same,Juice WRLD,chicago rap,2018.0,162,0.529,0.671,-7.226,0.0856,0.203,166,0.0769,0.307,83,C,108,51,2021-01-29--2021-02-05,5372180,19085118,4VXIryQMWpIdGgYR4TrjT1,2018-12-10 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
440,301,331,734,Juice WRLD,chicago rap,2021.0,78,0.545,0.663,-3.93,0.106,0.344,197,0.123,0.036,75,D,175,1,2021-05-28--2021-06-04,5368759,19085118,6vB8bdQCCTDDIH8fhRfuXA,2021-05-28 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
441,302,332,Boy With Luv (feat. Halsey),BTS,k-pop,2019.0,120,0.862,0.645,-4.757,0.192,0.798,230,0.0923,0.0965,82,B,85,16,2020-02-21--2020-02-28,5266625,37106176,5KawlOMHjWeUjQtnuRs22c,2019-04-12 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
442,303,334,Godzilla (feat. Juice WRLD),Eminem,detroit hip hop,2020.0,166,0.745,0.808,-5.26,0.292,0.829,211,0.145,0.342,83,A#/Bb,4,70,2020-01-17--2020-01-24,5143522,46785561,7FIWs0pqAYbP91WWM0vlTQ,2020-01-17 00:00:00,"['detroit hip hop', 'hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
443,304,335,Blueberry Faygo,Lil Mosey,melodic rap,2020.0,99,0.554,0.774,-7.909,0.132,0.349,163,0.207,0.0383,79,C,8,68,2020-04-17--2020-04-24,5085511,3816446,6wJYhPfqk3KGhHRG76WzOh,2020-02-07 00:00:00,"['melodic rap', 'rap', 'rap conscient', 'trap', 'vapor trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
444,305,336,Somebody That I Used To Know,"Gotye, Kimbra",australian pop,2011.0,129,0.495,0.864,-7.036,0.0992,0.72,245,0.591,0.037,76,C,129,14,2021-04-02--2021-04-09,5068972,2263960,4wCmqSrbyCgxEXROQE6vtV,2011-01-01 00:00:00,['australian pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
445,306,337,Holy (feat. Chance The Rapper),Justin Bieber,canadian pop,2020.0,87,0.704,0.673,-8.056,0.0898,0.372,213,0.196,0.36,81,F#/Gb,4,37,2020-09-18--2020-09-25,5063015,48504126,5u1n1kITHCxxp8twBcZxWy,2020-09-18 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
446,307,338,Vida Louca,"Mc Poze do Rodo, Neo Beats, Mainstreet",funk carioca,2021.0,92,0.62,0.852,-5.79,0.101,0.744,156,0.359,0.227,82,F#/Gb,200,1,2021-05-28--2021-06-04,5051514,448447,7IG7laqVpcvIIULrwWP5SA,2021-04-02 00:00:00,"['funk carioca', 'funk ostentacao']",0,0,0,0,0,1,0,0,0,0,0,0,0,
447,308,339,i n t e r l u d e,J. Cole,conscious hip hop,2021.0,99,0.574,0.77,-5.525,0.104,0.104,134,0.0617,0.106,76,C#/Db,15,3,2021-05-14--2021-05-21,7880155,14097410,08LwMWf5Tcfsd752EPzFV0,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
448,309,340,Butter (Instrumental),BTS,k-pop,2021.0,110,0.387,0.429,-7.486,0.142,0.41,163,0.000178,0.0753,70,C#/Db,95,1,2021-05-21--2021-05-28,7450126,37106176,2Ol2sv6gePRdJrZC1hDVNY,2021-06-04 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
449,310,341,Film out,BTS,k-pop,2021.0,164,0.709,0.499,-6.404,0.331,0.314,215,0.296,0.134,81,A#/Bb,25,5,2021-04-02--2021-04-09,7198095,37106176,3UHPGOkUcE4hE7sqBF4Snt,2021-04-01 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
450,311,342,Voilà ,Barbara Pravi,eurovision,2020.0,135,0.337,0.447,-8.665,0.298,0.603,177,0.773,0.0631,72,D,106,1,2021-05-21--2021-05-28,6935400,75496,1uAOCTevGnyKIDbgZdOCnE,2020-11-06 00:00:00,"['eurovision', 'nouvelle chanson francaise']",1,0,0,0,0,0,0,0,0,0,0,0,0,
451,312,343,Shy Away,Twenty One Pilots,modern rock,2021.0,97,0.856,0.588,-5.242,0.238,0.635,176,0.000818,0.0316,77,A,53,5,2021-04-09--2021-04-16,6634722,20823062,2nG54Y4a3sH9YpfxMolOyi,2021-05-21 00:00:00,"['modern rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
452,313,344,Saturday,Twenty One Pilots,modern rock,2021.0,113,0.89,0.687,-5.99,0.0436,0.854,173,0.00396,0.0344,75,G#/Ab,118,1,2021-05-21--2021-05-28,6628638,20823062,60dwJ8dnqZ4WrIdiu7LkNR,2021-05-21 00:00:00,"['modern rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
453,314,345,9 5 . s o u t h,J. Cole,conscious hip hop,2021.0,72,0.793,0.713,-5.277,0.727,0.203,197,0.271,0.397,75,D,18,2,2021-05-14--2021-05-21,6333126,14097410,5R691ipUYRDYW6ehapjoj6,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
454,315,346,Seeing Green (with Drake & Lil Wayne),Nicki Minaj,dance pop,2021.0,75,0.867,0.573,-2.876,0.38,0.231,340,0.0853,0.168,77,F,67,2,2021-05-14--2021-05-21,6299936,22161310,1TZv3bujNaYz646eezRE91,2021-05-14 00:00:00,"['dance pop', 'hip pop', 'pop', 'pop rap', 'post-teen pop', 'queens hip hop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
455,316,347,Dark Side,Blind Channel,eurovision,2021.0,98,0.955,0.571,-3.795,0.274,0.437,178,0.00254,0.105,72,G,134,1,2021-05-21--2021-05-28,6277641,121225,1ovFnZv6mUe0LzAbfVqOmh,2021-01-21 00:00:00,"['eurovision', 'oulu metal', 'trancecore']",1,0,0,0,0,0,0,0,0,0,0,0,0,Finland
456,317,348,SHUM,Go_A,eurovision,2021.0,116,0.737,0.527,-5.34,0.105,0.499,173,0.05,0.0642,75,E,137,1,2021-05-21--2021-05-28,6237019,107553,7mEDVrAHDnQJStDo8jKJJm,2021-03-10 00:00:00,['eurovision'],1,0,0,0,0,0,0,0,0,0,0,0,0,
457,318,349,In the morning,ITZY,k-pop girl group,2021.0,140,0.814,0.847,-4.668,0.0948,0.711,173,0.0825,0.152,79,B,69,4,2021-04-30--2021-05-07,5738325,2379448,2QdH0rKlV3d9Y6lWzcnlBH,2021-04-30 00:00:00,['k-pop girl group'],1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
458,319,350,l e t . g o . m y . h a n d (with Bas & 6LACK),J. Cole,conscious hip hop,2021.0,90,0.625,0.583,-8.011,0.196,0.516,267,0.506,0.277,73,C#/Db,27,2,2021-05-14--2021-05-21,5393643,14097410,0GAyuCo975IHGxxiLKDufB,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
459,320,351,What’s Next,Drake,canadian hip hop,2021.0,130,0.594,0.781,-6.959,0.162,0.0628,179,0.0136,0.0485,81,C,2,12,2021-03-05--2021-03-12,5335112,56308172,3aQem4jVGdhtg116TmJnHz,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
460,320,351,What’s Next,Drake,canadian hip hop,2021.0,130,0.594,0.781,-6.959,0.162,0.0628,179,0.0136,0.0485,81,C,2,12,2021-03-05--2021-03-12,5335112,56308172,3aQem4jVGdhtg116TmJnHz,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Chile
461,320,351,What’s Next,Drake,canadian hip hop,2021.0,130,0.594,0.781,-6.959,0.162,0.0628,179,0.0136,0.0485,81,C,2,12,2021-03-05--2021-03-12,5335112,56308172,3aQem4jVGdhtg116TmJnHz,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Poland
462,320,351,What’s Next,Drake,canadian hip hop,2021.0,130,0.594,0.781,-6.959,0.162,0.0628,179,0.0136,0.0485,81,C,2,12,2021-03-05--2021-03-12,5335112,56308172,3aQem4jVGdhtg116TmJnHz,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
463,321,352,Ramen & OJ,"Joyner Lucas, Lil Baby",boston hip hop,2021.0,106,0.571,0.597,-6.205,0.093,0.165,219,0.492,0.293,81,C#/Db,154,4,2021-05-07--2021-05-14,5282702,1725025,4TIqzdAssasqx3DAe6cG9J,2021-04-30 00:00:00,"['boston hip hop', 'hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
464,322,353,Cloud 9,Beach Bunny,bubblegrunge,2020.0,81,0.929,0.637,-3.593,0.344,0.902,148,0.00167,0.0491,81,E,91,9,2021-04-02--2021-04-09,5252767,618444,6vFsBXYczYsP0H3lgunZOm,2020-02-14 00:00:00,"['bubblegrunge', 'chicago indie', 'indie pop', 'pop']",1,1,0,0,1,0,0,0,0,0,0,0,0,United States
465,323,355,Headshot (feat. Polo G & Fivio Foreign),Lil Tjay,brooklyn drill,2021.0,118,0.639,0.808,-7.266,0.15,0.395,145,0.0802,0.279,81,C#/Db,64,10,2021-04-02--2021-04-09,5174298,3553442,4eNOLmx8r2IJAVKvBBL1jv,2021-04-02 00:00:00,"['brooklyn drill', 'melodic rap', 'nyc rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
466,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,United States
467,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,Norway
468,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,Japan
469,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,
470,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,
471,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,Estonia
472,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,South Africa
473,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,
474,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,United Kingdom
475,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,
476,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,
477,324,356,Mask,Dream,dream smp,2021.0,118,0.749,0.636,-4.197,0.107,0.653,175,0.195,0.0631,76,C#/Db,198,1,2021-05-21--2021-05-28,5156496,727731,3IxMaULfjq4IT2IN6v54PB,2021-05-21 00:00:00,['dream smp'],0,0,0,0,0,1,0,0,0,0,0,0,0,
478,325,357,10 Years,Daði Freyr,icelandic pop,2021.0,123,0.621,0.798,-6.916,0.0926,0.443,166,0.0141,0.0391,70,D,199,1,2021-05-21--2021-05-28,5152139,169137,4O0LQKVT6hGmVGNwizmydg,2021-03-13 00:00:00,"['icelandic pop', 'sunnlensk tonlist']",1,0,0,0,0,0,0,0,0,0,0,0,0,
479,326,358,Choker,Twenty One Pilots,modern rock,2021.0,142,0.664,0.7,-8.211,0.249,0.585,224,0.306,0.0394,72,G,127,2,2021-04-30--2021-05-07,5150176,20823062,732E6ibFkQR5lNIPEeiEnx,2021-05-21 00:00:00,"['modern rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
480,327,359,a p p l y i n g . p r e s s u r e,J. Cole,conscious hip hop,2021.0,83,0.759,0.699,-5.302,0.312,0.404,178,0.0814,0.311,71,C#/Db,25,1,2021-05-14--2021-05-21,15967986,14097410,1d7q712nXjG98HiwHk7HFS,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
481,328,360,1 0 0 . m i l ‘ (with Bas),J. Cole,conscious hip hop,2021.0,125,0.647,0.711,-5.667,0.312,0.227,164,0.334,0.0822,72,D,30,1,2021-05-14--2021-05-21,15171655,14097410,4n6NDfYake476trCjJRNl0,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
482,329,361,p u n c h i n ‘ . t h e . c l o c k,J. Cole,conscious hip hop,2021.0,94,0.74,0.769,-6.579,0.171,0.692,113,0.197,0.378,70,B,32,1,2021-05-14--2021-05-21,14051831,14097410,57ZUX6TNyKLBydAdVVd02x,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
483,330,362,t h e . c l i m b . b a c k,J. Cole,conscious hip hop,2021.0,81,0.632,0.618,-6.973,0.353,0.319,307,0.0526,0.346,70,B,36,2,2021-05-14--2021-05-21,12648655,14097410,5lLNBIyjp72btcnrjBG751,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
484,331,363,h u n g e r . o n . h i l l s i d e (with Bas),J. Cole,conscious hip hop,2021.0,95,0.703,0.563,-5.756,0.213,0.294,239,0.126,0.0702,71,D,48,1,2021-05-14--2021-05-21,11647489,14097410,5BwQjRasNcdRPuVWKcHto2,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
485,332,364,c l o s e,J. Cole,conscious hip hop,2021.0,140,0.587,0.597,-7.026,0.214,0.0753,219,0.0622,0.137,82,G,55,1,2021-05-14--2021-05-21,10712648,14097410,1D3z6HTiQsNmZxjl7F7eoG,2021-05-14 00:00:00,"['conscious hip hop', 'hip hop', 'north carolina hip hop', 'rap']",0,0,0,0,1,0,0,0,0,0,0,0,0,United States
486,333,365,WITHOUT YOU (with Miley Cyrus),The Kid LAROI,australian hip hop,2021.0,93,0.469,0.655,-6.257,0.0956,0.467,162,0.173,0.0292,81,C,34,3,2021-04-30--2021-05-07,6081034,2230022,1EHUQesfVKwbthtNcpBi9g,2021-04-30 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
487,334,366,"Snow Tha Product: Bzrp Music Sessions, Vol. 39","Bizarrap, Snow Tha Product",argentine hip hop,2021.0,133,0.748,0.83,-5.362,0.0992,0.523,178,0.354,0.162,78,C#/Db,92,3,2021-04-30--2021-05-07,5595839,3126961,3ke6it1vTmHtz2ApcIVUz5,2021-04-28 00:00:00,"['argentine hip hop', 'pop venezolano', 'trap argentino', 'trap latino']",0,0,1,0,0,0,0,0,0,0,0,0,0,
488,335,367,Travesuras - Remix,"Nio Garcia, Casper Magico, Ozuna, Wisin & Yandel, Myke Towers, Flow La Movie",latin,2021.0,176,0.788,0.739,-5.198,0.282,0.473,325,0.0513,0.0731,81,C#/Db,87,10,2021-04-02--2021-04-09,5518444,2123734,0VWLId2RwPCno9s1cJm2Vy,2021-03-11 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
489,336,368,Bubblegum Bitch,MARINA,dance pop,2012.0,158,0.856,0.495,-5.123,0.103,0.609,155,0.000219,0.0311,73,C,148,7,2021-04-23--2021-04-30,5375782,2918229,0ZFBKLOZLIM16RAUb5eomN,2012-04-30 00:00:00,"['dance pop', 'electropop', 'metropopolis', 'pop', 'post-teen pop', 'uk alternative pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
490,337,369,Falling,Harry Styles,pop,2019.0,110,0.267,0.567,-6.502,0.089,0.0592,241,0.839,0.0299,83,E,5,142,2019-12-27--2020-01-03,5294368,16112621,1ZMiCix7XSAbfAJlEZWMCp,2019-12-13 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
491,338,370,ExplÃcito,Myke Towers,trap latino,2020.0,95,0.83,0.828,-3.371,0.0613,0.422,196,0.348,0.047,81,D,182,5,2021-05-14--2021-05-21,5278449,6150675,6qraVL4IJaIj0IuEexYJNa,2020-12-15 00:00:00,['trap latino'],0,0,1,0,0,0,0,0,0,0,0,0,0,United States
492,339,371,No Te Enamores - Remix,"Milly, Farruko, Nio Garcia, Jay Wheeler, Amenazzy",reggaeton,2020.0,100,0.837,0.824,-4.603,0.271,0.58,290,0.573,0.107,79,F,58,19,2021-02-26--2021-03-05,5218146,22718,2mM3gZ0BbPwPPMelbA8vgt,2020-11-20 00:00:00,"['reggaeton', 'reggaeton flow', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
493,340,373,Lonely (with benny blanco),Justin Bieber,canadian pop,2020.0,80,0.239,0.631,-7.071,0.116,0.0927,150,0.864,0.0398,80,B,5,31,2020-11-06--2020-11-13,5191697,48504126,4y4spB9m0Q6026KfkAvy9Q,2020-10-16 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
494,341,374,Cupid's Chokehold / Breakfast in America,Gym Class Heroes,dance pop,2005.0,79,0.744,0.72,-6.938,0.255,0.619,244,0.237,0.12,81,C#/Db,77,10,2021-03-26--2021-04-02,5165035,1275345,2Lhdl74nwwVGOE2Gv35QuK,2005-02-22 00:00:00,"['dance pop', 'pop rap']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
495,342,375,If the World Was Ending - feat. Julia Michaels,JP Saxe,alt z,2019.0,76,0.473,0.464,-10.086,0.109,0.604,209,0.866,0.129,82,C#/Db,38,72,2020-04-17--2020-04-24,5127736,280585,2kJwzbxV2ppxnQoYw4GLBZ,2019-10-17 00:00:00,"['alt z', 'canadian contemporary r&b', 'indie cafe pop', 'pop', 'pop rock', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
496,343,376,"I DID IT (feat. Post Malone, Megan Thee Stallion, Lil Baby & DaBaby)",DJ Khaled,hip hop,2021.0,124,0.721,0.757,-2.906,0.647,0.364,166,0.00196,0.0691,76,E,47,2,2021-04-30--2021-05-07,7347891,6278835,20GrahbI4AzAOWxpYfDKkf,2021-04-30 00:00:00,"['hip hop', 'miami hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
497,344,377,Body,"Russ Millions, Tion Wayne",london rap,2021.0,141,0.674,0.883,-8.043,0.0678,0.73,279,0.21,0.357,84,B,61,17,2020-12-04--2020-12-11,5831357,323203,6uvMKqNlrSvcC4NaKnrwjZ,2021-04-22 00:00:00,['london rap'],0,0,0,0,1,0,0,0,0,0,0,0,0,
498,345,379,What You Need,Don Toliver,rap,2021.0,130,0.655,0.664,-7.327,0.17,0.13,218,0.059,0.0461,76,A#/Bb,169,1,2021-05-07--2021-05-14,5346005,1605329,6LcX2hBbXaJcK4AuefE936,2021-05-04 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
499,346,380,"L-Gante: Bzrp Music Sessions, Vol.38","Bizarrap, L-Gante",argentine hip hop,2021.0,88,0.819,0.553,-3.083,0.0915,0.761,193,0.368,0.257,80,D,115,9,2021-03-26--2021-04-02,5290877,3126961,1Crj1zkRMpsEjb9NOR6Zof,2021-03-10 00:00:00,"['argentine hip hop', 'pop venezolano', 'trap argentino', 'trap latino']",0,0,1,0,0,0,0,0,0,0,0,0,0,
500,347,381,HOLIDAY,Lil Nas X,lgbtq+ hip hop,2020.0,152,0.511,0.81,-6.924,0.0832,0.837,155,0.12,0.164,83,F,19,26,2021-01-01--2021-01-08,5264232,5473565,6zFMeegAMYQo0mt8rXtrli,2020-11-13 00:00:00,"['lgbtq+ hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
501,348,382,At My Worst,Pink Sweat$,bedroom soul,2020.0,92,0.415,0.813,-5.926,0.131,0.667,171,0.777,0.0349,79,C,71,28,2021-03-26--2021-04-02,5258000,942628,0ri0Han4IRJhzvERHOZTMr,2020-07-17 00:00:00,"['bedroom soul', 'pop']",0,0,0,0,0,0,0,0,1,0,0,0,0,
502,349,383,Life Is Good (feat. Drake),Future,atl hip hop,2020.0,142,0.609,0.676,-5.831,0.152,0.508,238,0.0706,0.481,81,D,3,70,2020-01-10--2020-01-17,5241227,10488292,5yY9lUy8nbvjM1Uyo1Uqoc,2020-01-10 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
503,349,383,Life Is Good (feat. Drake),Future,atl hip hop,2020.0,142,0.609,0.676,-5.831,0.152,0.508,238,0.0706,0.481,81,D,3,70,2020-01-10--2020-01-17,5241227,10488292,5yY9lUy8nbvjM1Uyo1Uqoc,2020-01-10 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
504,349,383,Life Is Good (feat. Drake),Future,atl hip hop,2020.0,142,0.609,0.676,-5.831,0.152,0.508,238,0.0706,0.481,81,D,3,70,2020-01-10--2020-01-17,5241227,10488292,5yY9lUy8nbvjM1Uyo1Uqoc,2020-01-10 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Italy
505,349,383,Life Is Good (feat. Drake),Future,atl hip hop,2020.0,142,0.609,0.676,-5.831,0.152,0.508,238,0.0706,0.481,81,D,3,70,2020-01-10--2020-01-17,5241227,10488292,5yY9lUy8nbvjM1Uyo1Uqoc,2020-01-10 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
506,349,383,Life Is Good (feat. Drake),Future,atl hip hop,2020.0,142,0.609,0.676,-5.831,0.152,0.508,238,0.0706,0.481,81,D,3,70,2020-01-10--2020-01-17,5241227,10488292,5yY9lUy8nbvjM1Uyo1Uqoc,2020-01-10 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
507,350,384,Extasy,"187 Strassenbande, Bonez MC, Frauenarzt",german hip hop,2021.0,130,0.739,0.863,-5.879,0.0931,0.547,175,0.0289,0.153,67,A,184,1,2021-05-07--2021-05-14,5203700,1223734,79lc69ZXfL4WmJIzVSDmWT,2021-05-13 00:00:00,"['german hip hop', 'hamburg hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
508,351,385,Wishing Well,Juice WRLD,chicago rap,2020.0,150,0.613,0.65,-6.13,0.267,0.0804,195,0.00336,0.128,83,A,7,44,2020-07-10--2020-07-17,5125706,19085118,2U5WueTLIK5WJLD7mvDODv,2020-07-10 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
509,352,386,Fan de Tus Fotos,"Nicky Jam, Romeo Santos",latin,2021.0,170,0.689,0.728,-5.718,0.109,0.431,198,0.293,0.0725,79,G,164,11,2021-03-19--2021-03-26,5103863,14826679,1mauYRwbpoGQX6itP2FAJC,2021-02-08 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
510,353,387,Tapão Na Raba,Raà Saia Rodada,forro,2021.0,128,0.796,0.808,-3.169,0.155,0.799,176,0.462,0.0305,80,C#/Db,82,12,2021-03-12--2021-03-19,5088848,1260752,58pgi1RpcU2fVJsxhm7BIr,2021-01-22 00:00:00,['forro'],0,0,0,0,0,1,0,0,0,0,0,0,0,
511,354,388,Machu Picchu,"Camilo, Evaluna Montaner",colombian pop,2021.0,168,0.789,0.788,-2.39,0.226,0.867,180,0.397,0.124,76,C,66,10,2021-03-05--2021-03-12,5062404,10561047,1LXb70u8SLsvBAPWHMCTMe,2021-03-01 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
512,355,389,Come & Go (with Marshmello),Juice WRLD,chicago rap,2020.0,145,0.814,0.625,-5.181,0.158,0.535,206,0.0172,0.0657,83,C,4,44,2020-07-10--2020-07-17,5037124,19085118,2Y0wPrPQBrGhoLn14xRYCG,2020-07-10 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
513,356,390,Robbery,Juice WRLD,chicago rap,2019.0,160,0.692,0.685,-5.122,0.153,0.578,241,0.328,0.0457,83,D,71,72,2020-09-04--2020-09-11,5024884,19085118,6Hj9jySrnFppAI0sEMCZpJ,2019-03-08 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
514,357,391,Paradigmas,Jorge & Mateus,sertanejo,2021.0,158,0.789,0.686,-4.103,0.4,0.822,158,0.322,0.126,72,C#/Db,199,1,2021-05-07--2021-05-14,5018076,15013645,17UfXrL7Run3GyZJW4uRjC,2021-04-22 00:00:00,"['sertanejo', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,Brazil
515,358,392,SugarCrash!,ElyOtto,weirdcore,2020.0,98,0.734,0.748,-6.499,0.0975,0.368,81,0.524,0.124,80,C,53,12,2021-03-12--2021-03-19,5018005,85617,2ePtv8MlBO9nuuXABqAfEX,2020-08-25 00:00:00,['weirdcore'],0,0,0,0,0,0,1,0,0,1,0,0,0,
516,359,393,durag activity (with Travis Scott),Baby Keem,hip hop,2021.0,80,0.701,0.89,-5.712,0.0895,0.505,226,0.00306,0.342,75,C,72,1,2021-04-30--2021-05-07,7939784,279741,4JJcP0Rv9AgyPD6ZGaC8EE,2021-04-30 00:00:00,"['hip hop', 'rap', 'trap', 'underground hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
517,360,394,love race (feat. Kellin Quinn),Machine Gun Kelly,ohio hip hop,2021.0,96,0.848,0.517,-4.054,0.214,0.429,189,0.00581,0.0521,76,A#/Bb,113,1,2021-04-30--2021-05-07,6325080,3864419,1F9kEuwT29fgqlovIclu81,2021-04-29 00:00:00,"['ohio hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
518,360,394,love race (feat. Kellin Quinn),Machine Gun Kelly,ohio hip hop,2021.0,96,0.848,0.517,-4.054,0.214,0.429,189,0.00581,0.0521,76,A#/Bb,113,1,2021-04-30--2021-05-07,6325080,3864419,1F9kEuwT29fgqlovIclu81,2021-04-29 00:00:00,"['ohio hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,France
519,361,395,POPSTAR (feat. Drake),DJ Khaled,hip hop,2020.0,163,0.56,0.8,-4.818,0.134,0.45,201,0.057,0.261,80,F,7,40,2020-07-17--2020-07-24,6127103,6278835,6EDO9iiTtwNv6waLwa1UUq,2020-07-17 00:00:00,"['hip hop', 'miami hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
520,362,396,LET IT GO (feat. Justin Bieber & 21 Savage),DJ Khaled,hip hop,2021.0,129,0.444,0.877,-7.547,0.169,0.658,166,0.24,0.172,75,G#/Ab,122,1,2021-04-30--2021-05-07,6083338,6278835,1cEhrSF6EylAEqdhUGuNpX,2021-04-30 00:00:00,"['hip hop', 'miami hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
521,363,397,Girl From Rio,Anitta,funk carioca,2021.0,140,0.604,0.732,-7.472,0.219,0.732,196,0.0112,0.0443,69,C,137,1,2021-04-30--2021-05-07,5768836,10740222,6CF085Ol0cVda1WqelybEQ,2021-05-21 00:00:00,"['funk carioca', 'funk pop', 'pagode baiano', 'pop nacional']",0,0,0,0,0,1,0,0,0,0,0,0,0,Brazil
522,364,399,Mr. Perfectly Fine (Taylor’s Version) (From The Vault),Taylor Swift,pop,2021.0,136,0.817,0.66,-6.269,0.0667,0.714,278,0.162,0.0521,74,B,20,5,2021-04-09--2021-04-16,5480722,42227614,2CYVETnhM9aytqrazYYwrK,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
523,365,401,Otra Noche Sin Ti,"J Balvin, Khalid",latin,2021.0,94,0.548,0.503,-7.564,0.145,0.441,229,0.0751,0.164,80,C,63,4,2021-04-09--2021-04-16,5377794,29051363,2CdTLdDjwZdVcm0bresVWx,2021-04-09 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
524,366,402,Met Him Last Night (feat. Ariana Grande),Demi Lovato,dance pop,2021.0,145,0.512,0.538,-4.548,0.101,0.12,205,0.22,0.0262,72,E,33,5,2021-04-02--2021-04-09,5200695,20331923,0BI0hfbmqybnd3TezrDME3,2021-04-02 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
525,367,403,Back In Blood (feat. Lil Durk),Pooh Shiesty,memphis hip hop,2020.0,147,0.538,0.759,-8.256,0.126,0.831,185,0.151,0.384,75,G#/Ab,100,11,2021-03-19--2021-03-26,5198209,423237,7JuHVG3qQKQKxC4doneXVW,2020-11-06 00:00:00,"['memphis hip hop', 'rap', 'southern hip hop', 'tennessee hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
526,368,404,Run It Up (feat. Offset & Moneybagg Yo),Lil Tjay,brooklyn drill,2021.0,120,0.575,0.88,-6.091,0.109,0.671,233,0.415,0.163,81,F#/Gb,94,5,2021-04-02--2021-04-09,5107084,3553442,1dg3qy5DjoJodawfOCgrTP,2021-04-02 00:00:00,"['brooklyn drill', 'melodic rap', 'nyc rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
527,369,405,Mi Niña,"Wisin, Myke Towers, Los Legendarios",latin,2020.0,100,0.821,0.823,-3.402,0.143,0.791,214,0.31,0.166,79,G#/Ab,37,31,2020-11-13--2020-11-20,5026961,6929075,2bgcUk2A3jjKbCJ7KPquTi,2020-09-23 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
528,370,406,As I Am (feat. Khalid),Justin Bieber,canadian pop,2021.0,100,0.543,0.595,-8.149,0.0975,0.109,175,0.127,0.038,72,B,9,6,2021-03-19--2021-03-26,5896065,48544923,6F2r4HgpJnvKDmkN6JEN6J,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
529,371,407,Come Through (feat. Chris Brown),H.E.R.,alternative r&b,2021.0,136,0.422,0.615,-8.019,0.112,0.185,215,0.604,0.0504,74,F,150,1,2021-04-23--2021-04-30,5531998,4138951,3krZxyBsWEHfEfJegYaWTd,2021-04-23 00:00:00,"['alternative r&b', 'dance pop', 'pop', 'r&b']",0,0,1,0,1,0,0,0,0,0,0,0,0,Italy
530,371,407,Come Through (feat. Chris Brown),H.E.R.,alternative r&b,2021.0,136,0.422,0.615,-8.019,0.112,0.185,215,0.604,0.0504,74,F,150,1,2021-04-23--2021-04-30,5531998,4138951,3krZxyBsWEHfEfJegYaWTd,2021-04-23 00:00:00,"['alternative r&b', 'dance pop', 'pop', 'r&b']",0,0,1,0,1,0,0,0,0,0,0,0,0,United States
531,372,408,Goosebumps,HVME,rap,2021.0,125,0.593,0.841,-7.846,0.124,0.808,163,0.418,0.0379,87,C#/Db,33,24,2021-01-08--2021-01-15,5496962,17719446,5uEYRdEIh9Bo4fpjDd4Na9,2021-01-15 00:00:00,"['rap', 'slap house']",0,0,1,0,0,0,0,0,0,0,0,0,0,
532,373,409,Put Your Records On,Ritt Momney,bedroom pop,2020.0,91,0.491,0.399,-10.778,0.11,0.151,211,0.0563,0.0538,81,F#/Gb,18,33,2020-10-23--2020-10-30,5181180,100463,6AGOKlMZWLCaEJGnaROtF9,2020-04-24 00:00:00,['bedroom pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
533,374,410,Facas - Ao Vivo,"Diego & Victor Hugo, Bruno & Marrone",sertanejo,2020.0,161,0.509,0.443,-5.995,0.472,0.69,197,0.615,0.0536,79,D,137,13,2021-03-12--2021-03-19,5141640,1585593,1ere9b9vDw2N3m9d4uiXxa,2020-10-15 00:00:00,"['sertanejo', 'sertanejo pop', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,
534,375,411,Train Wreck,James Arthur,pop,2016.0,77,0.485,0.311,-5.726,0.0726,0.225,209,0.701,0.0365,82,F#/Gb,62,28,2021-01-15--2021-01-22,5081800,8446147,55Am8neGJkdj2ADaM3aw5H,2016-10-28 00:00:00,"['pop', 'post-teen pop', 'talent show', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
535,375,411,Train Wreck,James Arthur,pop,2016.0,77,0.485,0.311,-5.726,0.0726,0.225,209,0.701,0.0365,82,F#/Gb,62,28,2021-01-15--2021-01-22,5081800,8446147,55Am8neGJkdj2ADaM3aw5H,2016-10-28 00:00:00,"['pop', 'post-teen pop', 'talent show', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
536,376,412,Monster (Shawn Mendes & Justin Bieber),Shawn Mendes,canadian pop,2020.0,146,0.383,0.652,-7.076,0.0828,0.549,179,0.0676,0.0516,79,D,7,23,2020-11-20--2020-11-27,5069268,33893352,2Z8yfpFX0ZMavHkcIeHiO1,2020-11-20 00:00:00,"['canadian pop', 'dance pop', 'pop', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
537,377,413,In Your Eyes,The Weeknd,canadian contemporary r&b,2020.0,100,0.719,0.667,-5.371,0.0736,0.717,238,0.00285,0.0346,81,G,6,53,2020-03-20--2020-03-27,5054319,35340069,7szuecWAPwGoV1e5vGu8tl,2020-03-20 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
538,378,414,SAD!,XXXTENTACION,emo rap,2018.0,75,0.613,0.74,-4.88,0.123,0.473,167,0.258,0.145,84,G#/Ab,101,68,2020-06-26--2020-07-03,5051338,29566516,3ee8Jmje8o58CHK66QrVC2,2018-03-16 00:00:00,"['emo rap', 'miami hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
539,379,415,Good Without,Mimi Webb,alt z,2021.0,90,0.576,0.616,-5.495,0.375,0.269,183,0.0723,0.0532,81,B,193,1,2021-04-23--2021-04-30,4998044,130801,15OCqNPYoLziEAsbVnqRj5,2021-03-26 00:00:00,"['alt z', 'indie cafe pop', 'pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
540,380,416,hot girl bummer,blackbear,electropop,2020.0,130,0.559,0.782,-7.106,0.385,0.685,189,0.125,0.0767,83,F#/Gb,19,66,2020-01-03--2020-01-10,4992396,4270131,2mt1IqcFyY1zmYZT8Q3xw9,2020-08-21 00:00:00,"['electropop', 'pop', 'pop rap']",1,0,0,0,0,0,0,0,0,1,0,0,0,
541,381,417,When I Was Your Man,Bruno Mars,dance pop,2012.0,73,0.28,0.612,-8.648,0.088,0.387,214,0.932,0.0434,82,C,197,1,2021-04-23--2021-04-30,4945935,32603394,0nJW01T7XtvILxQgC5J7Wh,2012-12-07 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
542,382,419,Stressed Out,Twenty One Pilots,modern rock,2015.0,170,0.637,0.734,-5.677,0.0602,0.648,203,0.0462,0.141,83,E,177,7,2021-02-26--2021-03-05,4913147,20823062,3CRDbSIZ4r5MsZ0YwxuEkn,2015-05-15 00:00:00,"['modern rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
543,383,420,Ski,"Young Stoner Life, Young Thug, Gunna",rap,2021.0,123,0.621,0.953,-7.638,0.0398,0.883,153,0.017,0.221,78,G#/Ab,72,1,2021-04-16--2021-04-23,7753784,61930,6755DFiZ7CWe2WMdTGW5C1,2021-04-16 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
544,384,421,Diamonds Dancing (feat. Travis Scott),"Young Stoner Life, Young Thug, Gunna",rap,2021.0,74,0.703,0.851,-7.351,0.0895,0.596,243,0.00949,0.303,69,E,75,1,2021-04-16--2021-04-23,7515766,61930,7uZqvqXzzYMKrexKxdcGmd,2021-04-16 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
545,385,422,Love Story (Taylor’s Version),Taylor Swift,pop,2021.0,119,0.792,0.627,-4.311,0.0845,0.415,236,0.13,0.031,73,D,8,5,2021-02-12--2021-02-19,6202933,42227614,6YvqWjhGD8mB5QXcbcUKtx,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
546,386,423,"Ele É Ele, Eu Sou Eu","Wesley Safadão, Os Barões Da Pisadinha",forro,2020.0,164,0.763,0.758,-8.754,0.0703,0.854,156,0.23,0.0768,73,C#/Db,107,14,2021-02-12--2021-02-19,5380517,9907270,7EWXP47VlXKO3r7mNxuWHw,2020-11-12 00:00:00,['forro'],0,0,0,0,0,1,0,0,0,0,0,0,0,
547,387,424,Quero Ver é Me Esquecer (feat. Jorge) - Ao Vivo,Os Barões Da Pisadinha,forro,2021.0,172,0.932,0.593,-2.324,0.133,0.913,148,0.302,0.0526,80,G#/Ab,186,1,2021-04-16--2021-04-23,5159208,4271775,2SUPbyD77tJuOUbqbxct6l,2021-02-19 00:00:00,"['forro', 'piseiro']",0,0,0,0,0,1,0,0,0,0,0,0,0,
548,388,425,willow,Taylor Swift,pop,2020.0,81,0.574,0.392,-9.195,0.145,0.529,215,0.833,0.17,79,G,3,19,2020-12-11--2020-12-18,5016865,42227614,0lx2cLdOt3piJbcaXIV74f,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
549,389,426,Why'd You Only Call Me When You're High?,Arctic Monkeys,garage rock,2013.0,92,0.631,0.691,-6.478,0.104,0.8,162,0.0483,0.0368,82,D,104,16,2021-02-05--2021-02-12,4976405,12375514,086myS9r57YsLbJpU0TgK9,2013-09-09 00:00:00,"['garage rock', 'permanent wave', 'rock', 'sheffield indie']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
550,390,428,LA CANCIÓN,"J Balvin, Bad Bunny",latin,2019.0,176,0.646,0.754,-5.795,0.108,0.429,243,0.152,0.317,83,G,43,29,2019-12-27--2020-01-03,4959754,29051363,0fea68AdmYNygeTGI4RC18,2019-06-28 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
551,391,429,You Belong With Me (Taylor’s Version),Taylor Swift,pop,2021.0,130,0.773,0.632,-4.856,0.0885,0.474,232,0.0623,0.0346,73,F#/Gb,52,1,2021-04-09--2021-04-16,9872084,42227614,1qrpoAMXodY6895hGKoUpA,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
552,392,430,Fearless (Taylor’s Version),Taylor Swift,pop,2021.0,100,0.741,0.569,-4.963,0.333,0.43,242,0.0122,0.0282,69,F,54,1,2021-04-09--2021-04-16,9676024,42227614,77sMIMlNaSURUAXq5coCxE,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
553,393,431,X Gon' Give It To Ya,DMX,east coast hip hop,2007.0,95,0.899,0.761,-3.09,0.0719,0.673,218,0.0135,0.183,73,A#/Bb,68,1,2021-04-09--2021-04-16,8638360,2815928,1zzxoZVylsna2BQB65Ppcb,2007-06-12 00:00:00,"['east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
554,394,432,Fifteen (Taylor’s Version),Taylor Swift,pop,2021.0,95,0.646,0.559,-4.61,0.32,0.289,295,0.116,0.0272,66,G,80,1,2021-04-09--2021-04-16,7852063,42227614,2nqio0SfWg6gh2eCtfuMa5,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
555,395,433,The Way I Loved You (Taylor’s Version),Taylor Swift,pop,2021.0,161,0.732,0.402,-4.665,0.108,0.472,244,0.0033,0.0484,72,F,84,1,2021-04-09--2021-04-16,7736262,42227614,22bPsP2jCgbLUvh82U0Z3M,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
556,396,434,You All Over Me (feat. Maren Morris) (Taylor’s Version) (From The Vault),Taylor Swift,pop,2021.0,143,0.496,0.589,-7.606,0.101,0.44,221,0.818,0.0377,65,D,51,3,2021-03-26--2021-04-02,7712896,42227614,5pcjystBtalYeqaiXCcgEY,2021-03-26 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
557,397,435,Hey Stephen (Taylor’s Version),Taylor Swift,pop,2021.0,116,0.571,0.788,-6.135,0.0934,0.797,255,0.106,0.0296,66,F#/Gb,93,1,2021-04-09--2021-04-16,7385864,42227614,550erGcdD9n6PnwxrvYqZT,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
558,398,436,White Horse (Taylor’s Version),Taylor Swift,pop,2021.0,185,0.517,0.423,-7.377,0.177,0.366,235,0.369,0.0486,65,C,102,1,2021-04-09--2021-04-16,7039222,42227614,5YL553x8sHderRBDlm3NM3,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
559,399,437,Forever & Always (Taylor’s Version),Taylor Swift,pop,2021.0,128,0.821,0.598,-4.433,0.143,0.673,226,0.0231,0.0447,66,A#/Bb,114,1,2021-04-09--2021-04-16,6566059,42227614,1msEuwSBneBKpVCZQcFTsU,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
560,400,438,Breathe (feat. Colbie Caillat) (Taylor’s Version),Taylor Swift,pop,2021.0,148,0.626,0.506,-6.066,0.228,0.321,264,0.156,0.0287,64,C#/Db,119,1,2021-04-09--2021-04-16,6508683,42227614,7HC7R2D8WjXVcUHJyEGjRs,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
561,401,439,Ruff Ryders' Anthem,DMX,east coast hip hop,1998.0,91,0.577,0.88,-8.093,0.201,0.74,215,0.0564,0.302,72,A#/Bb,139,1,2021-04-09--2021-04-16,5988511,2815928,1BKT2I9x4RGKaKqW4up34s,1998-05-01 00:00:00,"['east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
562,402,440,That’s When (feat. Keith Urban) (Taylor’s Version) (From The Vault),Taylor Swift,pop,2021.0,90,0.608,0.588,-7.062,0.092,0.508,190,0.225,0.0365,67,F,146,1,2021-04-09--2021-04-16,5889939,42227614,7eResoqEJJAVTkQYSqvO3P,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
563,403,441,Tell Me Why (Taylor’s Version),Taylor Swift,pop,2021.0,100,0.909,0.578,-3.669,0.333,0.541,201,0.0222,0.0628,63,G,147,1,2021-04-09--2021-04-16,5885151,42227614,0k0vFacOHNuArLWMiH60p7,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
564,404,442,You’re Not Sorry (Taylor’s Version),Taylor Swift,pop,2021.0,134,0.444,0.506,-4.99,0.123,0.241,262,0.0538,0.0285,64,F#/Gb,148,1,2021-04-09--2021-04-16,5860405,42227614,6iiAfo4wTA2CVC3Uwx9uh8,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
565,405,444,Relación - Remix,"Sech, Daddy Yankee, J Balvin, ROSALÃA, Farruko",latin,2020.0,172,0.771,0.793,-3.417,0.284,0.835,248,0.0337,0.0959,80,F,15,32,2020-10-16--2020-10-23,5206614,8758283,35UUpTmrcFXNIVIN26ujXl,2020-09-04 00:00:00,"['latin', 'panamanian pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
566,406,445,Don’t You (Taylor’s Version) (From The Vault),Taylor Swift,pop,2021.0,102,0.473,0.563,-11.548,0.109,0.405,209,0.514,0.0503,65,D#/Eb,192,1,2021-04-09--2021-04-16,5197564,42227614,4uuEGH5SVuzkkSFjo2DEiY,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
567,407,446,We Were Happy (Taylor’s Version) (From The Vault),Taylor Swift,pop,2021.0,106,0.373,0.609,-8.819,0.0779,0.13,245,0.849,0.0263,64,C,195,1,2021-04-09--2021-04-16,5189423,42227614,34V9RiEPe8MNdU32qJsJa1,2021-04-09 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
568,408,447,WACHA,"KHEA, Duki",argentine hip hop,2021.0,95,0.634,0.737,-4.25,0.111,0.528,207,0.345,0.0424,75,D#/Eb,153,2,2021-04-02--2021-04-09,5172999,3198705,5RmSunLqeDqNWww8LWhAiK,2021-04-01 00:00:00,"['argentine hip hop', 'trap argentino', 'trap latino', 'trap triste']",0,0,1,0,0,0,0,0,0,0,0,0,0,
569,409,448,Dancing With The Devil,Demi Lovato,dance pop,2021.0,75,0.64,0.413,-5.811,0.11,0.149,244,0.273,0.0427,66,G#/Ab,132,1,2021-04-02--2021-04-09,5836326,20338833,2kONpeXXK70YEs7c0UQbmq,2021-03-26 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
570,410,450,What Other People Say,"Sam Fischer, Demi Lovato",alt z,2021.0,127,0.472,0.652,-8.084,0.121,0.24,195,0.158,0.0399,77,G,160,3,2021-04-02--2021-04-09,5413003,122746,2h9TDNEXRhcDIV3fsoEVq9,2021-02-04 00:00:00,"['alt z', 'australian pop', 'dance pop', 'indie cafe pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
571,411,451,Hello (feat. A Boogie Wit da Hoodie),Pop Smoke,brooklyn drill,2020.0,131,0.647,0.905,-5.065,0.282,0.367,191,0.0187,0.107,82,A#/Bb,88,31,2021-01-29--2021-02-05,5323062,6852509,2r6OAV3WsYtXuXjvJ1lIDi,2020-07-20 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
572,412,452,Hasta Abajo,"Kevin Roldan, Bryant Myers, Lyanno",latin,2019.0,170,0.671,0.714,-5.119,0.325,0.641,230,0.289,0.362,77,F,91,12,2021-02-26--2021-03-05,5269163,4026643,4PEfJZpVjdclfzZ9XO8uDw,2019-10-04 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'reggaeton colombiano', 'reggaeton flow', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
573,413,453,Take You Dancing,Jason Derulo,dance pop,2020.0,113,0.711,0.789,-4.248,0.0876,0.753,191,0.0332,0.041,82,D,30,37,2020-10-23--2020-10-30,5176493,9778632,59qrUpoplZxbIZxk6X0Bm3,2020-07-22 00:00:00,"['dance pop', 'pop', 'pop rap', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
574,414,454,Unstable (feat. The Kid LAROI),Justin Bieber,canadian pop,2021.0,100,0.333,0.495,-10.109,0.112,0.37,159,0.737,0.0288,74,E,28,3,2021-03-19--2021-03-26,5137645,48544923,137mSruegm1u6x9NvwiagR,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
575,415,455,Stuck with U (with Justin Bieber),Ariana Grande,dance pop,2020.0,179,0.45,0.597,-6.658,0.382,0.537,229,0.223,0.0418,84,G#/Ab,2,48,2020-05-08--2020-05-15,5094660,67208170,4HBZA5flZLE435QTztThqH,2020-05-08 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
576,416,456,Hayloft,Mother Mother,indie pop,2008.0,96,0.922,0.527,-2.666,0.422,0.49,182,0.00475,0.0728,81,A,120,15,2021-03-05--2021-03-12,5086382,2110870,2kS6td1yvmpNgZTt1q5pQq,2008-09-23 00:00:00,"['indie pop', 'vancouver indie']",1,0,0,0,1,0,0,0,0,0,0,0,0,Canada
577,417,457,Esquema Preferido (feat. TarcÃsio do Acordeon),DJ Ivis,piseiro,2020.0,160,0.823,0.676,-4.386,0.0773,0.907,191,0.242,0.102,73,F,191,1,2021-04-02--2021-04-09,5078174,342930,0e6NlGJxYlHvAN8SKxad7N,2020-11-26 00:00:00,['piseiro'],0,0,0,0,0,1,0,0,0,0,0,0,0,
578,418,458,Además de Mà - Remix,"Rusherking, KHEA, Duki, Maria Becerra, LIT killah, Tiago PZK",trap argentino,2021.0,78,0.613,0.397,-5.077,0.192,0.405,331,0.0396,0.0549,78,F#/Gb,75,5,2021-03-05--2021-03-12,5060336,301217,7I8L3vYCLThw2FDrE6LuzE,2021-03-04 00:00:00,"['trap argentino', 'trap latino', 'trap triste']",0,0,1,0,0,0,1,0,0,0,0,0,0,
579,419,459,Payphone,"Maroon 5, Wiz Khalifa",pop,2012.0,110,0.756,0.739,-4.828,0.37,0.523,232,0.0136,0.0394,74,E,193,3,2021-03-19--2021-03-26,5052717,32279979,1LmN9SSHISbtp9LoaR5ZVJ,2012-01-01 00:00:00,"['pop', 'pop rock']",1,0,0,0,0,0,0,0,0,0,0,0,0,
580,420,460,Ghost,Justin Bieber,canadian pop,2021.0,154,0.741,0.601,-5.569,0.415,0.441,154,0.185,0.0478,71,D,50,3,2021-03-19--2021-03-26,5013450,48544923,6I3mqTwhRpn34SLVafSH7G,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
581,421,461,Off My Face,Justin Bieber,canadian pop,2021.0,91,0.228,0.509,-8.68,0.104,0.586,157,0.92,0.0332,75,E,37,3,2021-03-19--2021-03-26,5004111,48544923,3T03rPwlL8NVk1yIaxeD8U,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
582,422,462,"Whats Poppin (feat. DaBaby, Tory Lanez & Lil Wayne) [Remix] - Bonus Track",Jack Harlow,deep underground hip hop,2020.0,145,0.723,0.904,-5.224,0.185,0.835,228,0.0631,0.26,73,B,140,13,2021-01-01--2021-01-08,4972518,1053324,0ZLuW8uOXdFNWcI40C0OC2,2020-12-11 00:00:00,"['deep underground hip hop', 'kentucky hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
583,423,463,Take on Me,a-ha,new romantic,1985.0,84,0.902,0.573,-7.638,0.0928,0.876,226,0.018,0.054,84,F#/Gb,188,3,2021-02-26--2021-03-05,4969662,1560784,2WfaOiMkCvy7F5fcp2zZ8L,1985-06-01 00:00:00,"['new romantic', 'new wave', 'new wave pop', 'permanent wave', 'soft rock', 'synthpop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
584,424,464,BEBÉ,"Camilo, El Alfa",colombian pop,2020.0,130,0.72,0.862,-4.048,0.0604,0.965,199,0.487,0.0379,78,E,45,18,2021-01-01--2021-01-08,4967348,10580764,7D7EH7MGyNHWSkqrszerI1,2020-11-25 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
585,425,466,Tu Veneno,J Balvin,latin,2021.0,176,0.659,0.664,-4.232,0.0874,0.797,158,0.0625,0.0873,76,A#/Bb,128,2,2021-03-26--2021-04-02,6007541,29067437,5KFHrrBMyGj5MhVbZMM3ts,2021-03-19 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,Colombia
586,426,467,Deserve You,Justin Bieber,canadian pop,2021.0,90,0.633,0.677,-7.831,0.112,0.409,188,0.0314,0.0771,69,G,49,2,2021-03-19--2021-03-26,5837372,48544923,5NU40QTlXrDUJzDBdv79bg,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
587,427,468,2 Much,Justin Bieber,canadian pop,2021.0,120,0.444,0.583,-8.601,0.353,0.167,153,0.593,0.0456,70,A,44,2,2021-03-19--2021-03-26,5794583,48544923,0oaY19dUwZimIgzn3ZZLZO,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
588,428,469,Tusa,"KAROL G, Nicki Minaj",latin,2019.0,101,0.715,0.803,-3.28,0.0574,0.574,201,0.295,0.298,80,D,3,66,2020-01-17--2020-01-24,5510113,17792779,7k4t7uLgtOxPwTpFmtJNTY,2019-11-07 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
589,429,470,Una Locura,"Ozuna, J Balvin, Chencho Corleone",latin,2020.0,168,0.761,0.714,-4.596,0.241,0.906,231,0.139,0.0427,81,F,34,29,2020-11-06--2020-11-13,5466954,29238936,5y7DaS3jAc9eZzcSOoUIwU,2020-09-04 00:00:00,"['latin', 'puerto rican pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
590,430,471,Loved By You (feat. Burna Boy),Justin Bieber,canadian pop,2021.0,101,0.724,0.79,-6.972,0.113,0.642,160,0.0696,0.0852,69,C#/Db,61,2,2021-03-19--2021-03-26,5419040,48544923,2tB9OFgAHjAds3cqquLlvp,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
591,431,472,Girls Like Us,Zoe Wees,german pop,2021.0,126,0.648,0.444,-4.955,0.059,0.171,189,0.288,0.0476,78,C#/Db,181,1,2021-03-26--2021-04-02,5410730,203555,5SFXOMJJ334Wn2PwBHeRZN,2021-01-12 00:00:00,['german pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
592,432,473,Lemon Pepper Freestyle (feat. Rick Ross),Drake,canadian hip hop,2021.0,95,0.637,0.77,-5.53,0.171,0.431,384,0.103,0.345,76,C#/Db,17,4,2021-03-05--2021-03-12,5365747,56327031,4FRW5Nza1Ym91BGV4nFWXI,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
593,432,473,Lemon Pepper Freestyle (feat. Rick Ross),Drake,canadian hip hop,2021.0,95,0.637,0.77,-5.53,0.171,0.431,384,0.103,0.345,76,C#/Db,17,4,2021-03-05--2021-03-12,5365747,56327031,4FRW5Nza1Ym91BGV4nFWXI,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Chile
594,432,473,Lemon Pepper Freestyle (feat. Rick Ross),Drake,canadian hip hop,2021.0,95,0.637,0.77,-5.53,0.171,0.431,384,0.103,0.345,76,C#/Db,17,4,2021-03-05--2021-03-12,5365747,56327031,4FRW5Nza1Ym91BGV4nFWXI,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Poland
595,432,473,Lemon Pepper Freestyle (feat. Rick Ross),Drake,canadian hip hop,2021.0,95,0.637,0.77,-5.53,0.171,0.431,384,0.103,0.345,76,C#/Db,17,4,2021-03-05--2021-03-12,5365747,56327031,4FRW5Nza1Ym91BGV4nFWXI,2021-03-05 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
596,433,474,Esquema Preferido,"DJ Ivis, TarcÃsio do Acordeon",piseiro,2020.0,160,0.823,0.676,-4.386,0.0773,0.907,191,0.242,0.102,73,F,97,9,2021-02-12--2021-02-19,5356696,342930,0e6NlGJxYlHvAN8SKxad7N,2020-11-26 00:00:00,['piseiro'],0,0,0,0,0,1,0,0,0,0,0,0,0,
597,434,475,Love Not War (The Tampa Beat),"Jason Derulo, Nuka",dance pop,2020.0,98,0.85,0.738,-3.049,0.23,0.865,193,0.105,0.0642,79,G#/Ab,105,14,2021-01-15--2021-01-22,5326719,9778632,4Lt6GXGzYsa1tgkv3nGSTm,2020-11-20 00:00:00,"['dance pop', 'pop', 'pop rap', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
598,435,476,Die For You (feat. Dominic Fike),Justin Bieber,canadian pop,2021.0,135,0.629,0.728,-6.629,0.0847,0.71,199,0.00196,0.0318,67,C#/Db,57,2,2021-03-19--2021-03-26,5323412,48544923,7aely3H8kMj9o0gt6vXHE1,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
599,436,477,Starboy,"The Weeknd, Daft Punk",canadian contemporary r&b,2016.0,186,0.587,0.679,-7.015,0.137,0.486,231,0.141,0.276,83,G,64,12,2021-02-05--2021-02-12,5302285,35340069,7MXVkk9YMctZqd1Srtv4MB,2016-11-25 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
600,437,478,La Tóxica,Farruko,latin,2020.0,92,0.701,0.659,-4.107,0.0866,0.623,181,0.0882,0.164,78,A,22,29,2020-10-23--2020-10-30,5255393,10510156,15OjBeqNX3bShsGYQbteRv,2020-07-24 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
601,438,479,Coração Na Cama - Ao Vivo,Hugo & Guilherme,sertanejo pop,2020.0,110,0.794,0.764,-4.096,0.34,0.721,174,0.663,0.0589,77,G#/Ab,181,3,2021-03-12--2021-03-19,5211351,435936,2nZj5YymF54qhAu7RneVP6,2020-11-13 00:00:00,['sertanejo pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
602,439,480,Love You Different (feat. BEAM),Justin Bieber,canadian pop,2021.0,127,0.584,0.759,-6.655,0.16,0.374,187,0.0652,0.06,66,G#/Ab,60,1,2021-03-19--2021-03-26,10024729,48544923,27UcQ6dAvQrgH9C880rCM3,2021-03-19 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
603,440,481,Somebody,Justin Bieber,canadian pop,2010.0,130,0.833,0.714,-5.239,0.298,0.663,221,0.00249,0.0259,67,F,74,1,2021-03-19--2021-03-26,8912458,48544923,3rLIv187BhjyweFe89SgLn,2010-01-01 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
604,441,482,White Dress,Lana Del Rey,art pop,2021.0,123,0.263,0.493,-12.805,0.0879,0.158,334,0.926,0.0351,65,C,152,1,2021-03-19--2021-03-26,5796978,13697048,4Hl9rOqYomojCmxYfr25im,2021-03-19 00:00:00,"['art pop', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
605,442,483,Polvo,"Nicky Jam, Myke Towers",latin,2020.0,82,0.621,0.763,-6.169,0.106,0.582,212,0.0105,0.066,76,B,82,18,2021-02-05--2021-02-12,5528508,14831925,68mrW6gXHgupgSiDHgaDi5,2020-11-20 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
606,443,484,Chemtrails Over The Country Club,Lana Del Rey,art pop,2021.0,201,0.276,0.334,-13.125,0.113,0.429,272,0.877,0.0643,73,E,138,2,2021-01-15--2021-01-22,5418816,13697048,7bPWdJgx8vek7S5i5yAtvG,2021-03-19 00:00:00,"['art pop', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
607,444,485,Parce (feat. Justin Quiles),"Maluma, Lenny Tavárez",latin,2020.0,84,0.739,0.691,-3.09,0.11,0.884,249,0.422,0.229,78,F,37,31,2020-11-06--2020-11-13,5312876,26769304,4RJz8NfIe09gpKMiRUWKhJ,2020-08-21 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
608,445,486,Ropa Cara,Camilo,colombian pop,2021.0,170,0.526,0.813,-4.787,0.11,0.608,164,0.105,0.125,73,E,40,9,2021-02-05--2021-02-12,5249427,10580764,7BIy3EGQhg98CsRdKYHnJC,2021-01-18 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
609,445,486,Ropa Cara,Camilo,colombian pop,2021.0,170,0.526,0.813,-4.787,0.11,0.608,164,0.105,0.125,73,E,40,9,2021-02-05--2021-02-12,5249427,10580764,7BIy3EGQhg98CsRdKYHnJC,2021-01-18 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
610,446,487,Vida de Rico,Camilo,colombian pop,2020.0,88,0.457,0.824,-5.428,0.041,0.95,188,0.167,0.0543,79,F#/Gb,25,26,2020-10-23--2020-10-30,5189822,10580764,73nAK3HgQK8dak83Y2WQ8F,2020-09-21 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
611,446,487,Vida de Rico,Camilo,colombian pop,2020.0,88,0.457,0.824,-5.428,0.041,0.95,188,0.167,0.0543,79,F#/Gb,25,26,2020-10-23--2020-10-30,5189822,10580764,73nAK3HgQK8dak83Y2WQ8F,2020-09-21 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
612,447,488,Devil Eyes,Hippie Sabotage,edm,2016.0,99,0.396,0.391,-8.621,0.315,0.199,132,0.702,0.189,80,C#/Db,182,3,2021-03-12--2021-03-19,5098581,713486,7MiZjKawmXTsTNePyTfPyL,2016-02-05 00:00:00,"['edm', 'electronic trap']",0,0,0,0,0,0,1,0,0,1,0,0,0,United States
613,448,489,Ponte Pa' Mi,Justin Quiles,latin,2020.0,92,0.713,0.878,-4.566,0.0822,0.615,203,0.0581,0.0948,76,F,141,13,2021-02-05--2021-02-12,5082870,2897862,4C6BlqqMwjFzOXzqpTeoWR,2020-11-20 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
614,449,490,Dámelo To’ (feat. Myke Towers),Selena Gomez,dance pop,2021.0,182,0.641,0.787,-7.376,0.07,0.437,185,0.101,0.315,64,G#/Ab,109,1,2021-03-12--2021-03-19,6426522,28931149,36CiGk9oRdwTnBDMgKEfjl,2021-03-12 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
615,450,491,Patience (feat. YUNGBLUD & Polo G),KSI,uk hip hop,2021.0,122,0.741,0.616,-4.272,0.307,0.431,182,0.00251,0.0426,71,G,121,1,2021-03-12--2021-03-19,6155698,2010879,5J5CpT6bgE6KYKk23jgp9W,2021-03-12 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,France
616,450,491,Patience (feat. YUNGBLUD & Polo G),KSI,uk hip hop,2021.0,122,0.741,0.616,-4.272,0.307,0.431,182,0.00251,0.0426,71,G,121,1,2021-03-12--2021-03-19,6155698,2010879,5J5CpT6bgE6KYKk23jgp9W,2021-03-12 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,United Kingdom
617,450,491,Patience (feat. YUNGBLUD & Polo G),KSI,uk hip hop,2021.0,122,0.741,0.616,-4.272,0.307,0.431,182,0.00251,0.0426,71,G,121,1,2021-03-12--2021-03-19,6155698,2010879,5J5CpT6bgE6KYKk23jgp9W,2021-03-12 00:00:00,['uk hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,Czech Republic
618,451,492,Selfish Love (with Selena Gomez),DJ Snake,dance pop,2021.0,111,0.646,0.723,-7.973,0.0994,0.443,169,0.0206,0.102,74,F,56,2,2021-03-05--2021-03-12,6020785,7408249,3XoflnowYPFRPOh3uFvHcm,2021-03-04 00:00:00,"['dance pop', 'edm', 'electronic trap', 'pop', 'pop dance']",1,0,0,0,0,0,1,0,0,0,0,0,0,France
619,452,493,Snowman,Sia,australian dance,2018.0,105,0.512,0.716,-6.257,0.0928,0.326,166,0.483,0.0331,77,C#/Db,12,14,2020-12-25--2021-01-01,5454807,20528724,7uoFMmxln0GPXQ0AcCBXRq,2018-11-01 00:00:00,"['australian dance', 'australian pop', 'dance pop', 'pop']",0,0,0,0,0,0,1,0,0,0,0,0,0,Australia
620,453,494,DAYWALKER! (feat. CORPSE),Machine Gun Kelly,ohio hip hop,2021.0,89,0.922,0.632,-2.173,0.0927,0.497,138,0.00558,0.0794,74,G,168,1,2021-03-12--2021-03-19,5439646,3868320,2NnJpRXIlx35Vij3bPZO0h,2021-03-12 00:00:00,"['ohio hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
621,453,494,DAYWALKER! (feat. CORPSE),Machine Gun Kelly,ohio hip hop,2021.0,89,0.922,0.632,-2.173,0.0927,0.497,138,0.00558,0.0794,74,G,168,1,2021-03-12--2021-03-19,5439646,3868320,2NnJpRXIlx35Vij3bPZO0h,2021-03-12 00:00:00,"['ohio hip hop', 'pop rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,France
622,454,495,La Curiosidad,"Jay Wheeler, DJ Nelson, Myke Towers",latin,2020.0,90,0.677,0.845,-4.798,0.108,0.68,220,0.269,0.136,82,B,19,38,2020-08-28--2020-09-04,5198514,1650912,4HYDUMY0xSpeBr0AMY9cUz,2020-06-12 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
623,455,496,All We Got (feat. KIDDO),Robin Schulz,dance pop,2020.0,184,0.76,0.504,-4.246,0.151,0.64,191,0.286,0.0426,74,E,86,12,2021-01-22--2021-01-29,5156937,2786366,1FP9s72rDYty6mfoOEYKnE,2020-10-16 00:00:00,"['dance pop', 'deep euro house', 'deep house', 'edm', 'german dance', 'pop', 'pop dance', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,Germany
624,456,497,Say So,Doja Cat,dance pop,2019.0,111,0.673,0.787,-4.583,0.0904,0.779,238,0.264,0.159,82,B,6,60,2020-03-13--2020-03-20,5103528,8671649,3Dv1eDb0MEgF93GpLXlucZ,2019-11-07 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
625,457,498,Hope,XXXTENTACION,emo rap,2018.0,146,0.457,0.592,-6.081,0.146,0.225,111,0.661,0.0603,84,A,157,9,2021-01-29--2021-02-05,5085527,29566516,2ZRo7axmMPeSVUvDbGkJah,2018-03-16 00:00:00,"['emo rap', 'miami hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
626,458,499,The Less I Know The Better,Tame Impala,australian psych,2015.0,117,0.74,0.64,-4.083,0.167,0.785,217,0.0115,0.0284,84,E,149,46,2020-06-26--2020-07-03,5084635,5064200,6K4t31amVTZDgR3sKmwUJJ,2015-07-17 00:00:00,"['australian psych', 'neo-psychedelic']",0,1,0,0,0,0,0,0,0,0,0,0,0,Australia
627,459,500,I Feel It Coming,"The Weeknd, Daft Punk",canadian contemporary r&b,2016.0,93,0.819,0.773,-5.946,0.0679,0.585,270,0.428,0.118,80,C,109,6,2021-02-05--2021-02-12,5079857,35340069,3dhjNA0jGA8vHBQ1VdD6vV,2016-11-25 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
628,460,501,Mood Swings (feat. Lil Tjay),Pop Smoke,brooklyn drill,2020.0,180,0.602,0.48,-6.335,0.0848,0.269,214,0.487,0.368,82,A#/Bb,12,37,2020-08-28--2020-09-04,5068349,6852509,5rZlwNFl01HqLWBQGryKSm,2020-07-03 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
629,461,502,Someone To You,BANNERS,indie cafe pop,2019.0,75,0.903,0.52,-5.497,0.254,0.652,220,0.00517,0.042,79,D,123,26,2020-10-23--2020-10-30,5054881,419151,2f0pn9DkEJwAzXApnFh5cr,2019-10-04 00:00:00,"['indie cafe pop', 'indie poptimism', 'modern rock', 'pop', 'pop rock']",1,0,0,0,1,0,0,0,0,0,0,0,0,United Kingdom
630,462,503,To the Bone,Pamungkas,indonesian pop,2019.0,140,0.727,0.668,-6.55,0.1,0.939,345,0.514,0.027,81,G,198,1,2021-03-12--2021-03-19,5052557,1643882,3pCt2wRdBDa2kCisIdHWgF,2019-06-14 00:00:00,['indonesian pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
631,463,504,How You Like That,BLACKPINK,k-pop,2020.0,130,0.761,0.812,-5.222,0.0601,0.344,183,0.0465,0.0812,79,B,4,38,2020-06-26--2020-07-03,5023592,23848461,4SFknyjLcyTLJFPKD2m96o,2020-10-02 00:00:00,"['k-pop', 'k-pop girl group']",1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
632,464,505,LOST,"NF, Hopsin",hip hop,2021.0,117,0.912,0.637,-3.123,0.0657,0.451,235,0.352,0.308,66,F,200,1,2021-03-12--2021-03-19,5013851,5831194,2MZrOmrVxRmmOoFW6dhenG,2021-03-11 00:00:00,"['hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
633,465,507,AP - Music from the film Boogie,Pop Smoke,brooklyn drill,2021.0,148,0.744,0.751,-6.859,0.252,0.634,172,0.152,0.177,75,C#/Db,64,2,2021-02-26--2021-03-05,5462333,6852509,17vGPZ5EsdvtgAOCD4FLWI,2021-02-26 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
634,466,508,Life's A Mess II (with Clever & Post Malone),Juice WRLD,chicago rap,2021.0,140,0.37,0.53,-9.989,0.112,0.701,207,0.806,0.0279,72,F#/Gb,166,1,2021-03-05--2021-03-12,5393459,19102888,4O3RwH1TFG1EjPezLIYehI,2021-03-05 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
635,467,509,CHIAMAMI PER NOME,"Francesca Michielin, Fedez",italian adult pop,2021.0,90,0.636,0.641,-4.318,0.125,0.285,223,0.289,0.0414,67,A#/Bb,170,1,2021-03-05--2021-03-12,5321946,568711,0ZqHo6eTBHUcOVjZzPvftT,2021-03-03 00:00:00,"['italian adult pop', 'italian indie pop', 'italian pop', 'italian pop rock']",1,0,0,0,0,0,0,0,0,0,0,0,0,
636,468,510,Antes,"Anuel AA, Ozuna",latin,2021.0,94,0.737,0.817,-5.453,0.092,0.67,207,0.046,0.102,73,F#/Gb,54,7,2021-01-22--2021-01-29,5232377,18306226,73O30uMI7n6DuzBmbtO7kC,2021-01-22 00:00:00,"['latin', 'reggaeton', 'reggaeton flow', 'trap boricua', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
637,469,511,Mona Lisa,"Booba, JSX",french hip hop,2021.0,134,0.529,0.784,-7.681,0.118,0.246,188,0.683,0.0742,72,B,175,1,2021-03-05--2021-03-12,5208787,2161609,5LYRIyhmlrDAQsYdHEvP0f,2021-03-04 00:00:00,"['french hip hop', 'old school rap francais', 'pop urbaine', 'rap conscient']",0,0,1,0,0,0,0,0,0,0,0,0,0,
638,470,512,Real As It Gets (feat. EST Gee),Lil Baby,atl hip hop,2021.0,140,0.705,0.779,-5.891,0.0971,0.196,193,0.00471,0.163,74,F#/Gb,180,1,2021-03-05--2021-03-12,5170861,7816213,7eX3um6NpOQKWJMGCi97XD,2021-03-04 00:00:00,"['atl hip hop', 'atl trap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
639,471,513,Se Te Nota (with Guaynaa),Lele Pons,latin pop,2020.0,103,0.686,0.905,-3.152,0.266,0.963,156,0.0907,0.0664,77,C,24,25,2020-11-06--2020-11-13,5168240,786461,11EnQRgRMJwMAesfkB5pnu,2020-09-02 00:00:00,"['latin pop', 'viral pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Venezuela
640,472,514,Head Shoulders Knees & Toes (feat. Norma Jean Martine),"Ofenbach, Quarterhead",edm,2020.0,125,0.828,0.798,-5.36,0.121,0.6,157,0.0247,0.193,79,D,91,26,2021-01-08--2021-01-15,5093408,432511,6i7zAdNhzUN2k1HcrBxPHG,2020-05-08 00:00:00,"['edm', 'new french touch', 'pop dance', 'tropical house']",0,0,0,0,0,0,1,0,0,1,0,0,0,
641,473,515,Star Shopping,Lil Peep,emo rap,1905.0,93,0.471,0.585,-9.934,0.115,0.323,142,0.0967,0.0616,82,E,152,23,2021-01-29--2021-02-05,5073657,7535054,30bqVoKjX479ab90a8Pafp,2015,"['emo rap', 'lgbtq+ hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
642,474,516,Electric Love,BØRNS,modern alternative rock,2015.0,120,0.797,0.611,-7.627,0.26,0.518,219,0.00543,0.0533,83,F#/Gb,61,26,2020-08-21--2020-08-28,5060903,1027085,2GiJYvgVaD2HtM8GqD9EgQ,2015-10-16 00:00:00,"['modern alternative rock', 'modern rock', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,
643,475,517,Maniac,Conan Gray,alt z,2020.0,108,0.639,0.628,-5.46,0.354,0.493,186,0.00162,0.0435,82,G#/Ab,112,28,2020-03-20--2020-03-27,5044929,3799104,6KfoDhO4XUWSbnyKjNp9c4,2020-03-20 00:00:00,"['alt z', 'bedroom pop', 'electropop', 'indie pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
644,476,518,Only Wanna Be With You - Pokémon 25 Version,Post Malone,dfw rap,2021.0,98,0.709,0.47,-4.563,0.302,0.247,242,0.00124,0.0299,72,G,74,1,2021-02-26--2021-03-05,7464020,33663701,3SawmGBjjq8EOYZJV11cJm,2021-02-25 00:00:00,"['dfw rap', 'melodic rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
645,477,519,test drive,Ariana Grande,dance pop,2021.0,115,0.708,0.698,-4.943,0.124,0.322,123,0.0251,0.0454,71,A,38,2,2021-02-19--2021-02-26,6591829,67208170,3eZYOQO4UzKrUDYDghtnFw,2021-02-19 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
646,478,520,Tú Me Dejaste De Querer,"C. Tangana, Niño de Elche, La Húngara",urbano espanol,2021.0,84,0.723,0.823,-4.778,0.0998,0.505,199,0.311,0.229,75,E,42,12,2020-11-06--2020-11-13,5874460,1453875,5ddFjrPG8NgQQ6xlOQIVd2,2021-02-26 00:00:00,['urbano espanol'],0,0,0,0,0,1,0,0,0,0,0,0,0,
647,479,521,SO DONE,The Kid LAROI,australian hip hop,2020.0,143,0.598,0.719,-6.254,0.115,0.303,127,0.232,0.077,74,A,46,19,2020-11-06--2020-11-13,5440707,2238190,5psEZhQu6lukjhavJo4AbC,2020-10-23 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
648,480,522,Jeans,Justin Quiles,latin,2020.0,84,0.656,0.807,-4.395,0.0693,0.89,186,0.0165,0.105,75,D#/Eb,35,27,2020-11-13--2020-11-20,5145966,2897862,3GtnId3Cm1Xa6joCj08nzW,2020-08-14 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
649,481,523,ROXANNE,Arizona Zervas,pop rap,2019.0,117,0.601,0.621,-5.616,0.46,0.457,164,0.0522,0.148,82,F#/Gb,2,61,2019-12-27--2020-01-03,5124742,621200,696DnlkuDOXcMAnKlTgXXK,2019-10-10 00:00:00,"['pop rap', 'rhode island rap']",1,0,1,0,0,0,0,0,0,0,0,0,0,
650,482,524,rockstar (feat. 21 Savage),Post Malone,dfw rap,2018.0,160,0.52,0.585,-6.136,0.131,0.129,219,0.124,0.0712,83,F,83,53,2019-12-27--2020-01-03,5115990,33663701,0e7ipj03S05BNilyu5bRzt,2018-04-27 00:00:00,"['dfw rap', 'melodic rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
651,483,525,Párteme La Cara,"C. Tangana, Ed Maverick",urbano espanol,2021.0,128,0.296,0.761,-10.22,0.134,0.579,168,0.551,0.0484,70,C,185,1,2021-02-26--2021-03-05,5079580,1453875,5gEUDNQvoQjdjklrwPdGwD,2021-02-26 00:00:00,['urbano espanol'],0,0,0,0,0,1,0,0,0,0,0,0,0,
652,484,526,Without Me,Halsey,dance pop,2018.0,136,0.488,0.752,-7.05,0.0936,0.533,202,0.297,0.0705,79,F#/Gb,80,57,2020-01-17--2020-01-24,5016283,15663384,5p7ujcrUXASCNwRaWNHR1C,2018-10-04 00:00:00,"['dance pop', 'electropop', 'etherpop', 'indie poptimism', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
653,485,527,BOOKER T,Bad Bunny,latin,2020.0,114,0.6,0.883,-7.188,0.0931,0.691,157,0.114,0.37,77,G,33,12,2020-11-27--2020-12-04,4995965,36177712,26w9NTiE9NGjW1ZvIOd1So,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
654,486,528,Intentions (feat. Quavo),Justin Bieber,canadian pop,2020.0,148,0.546,0.806,-6.637,0.102,0.874,213,0.3,0.0575,77,A,5,53,2020-03-13--2020-03-20,4994138,48544923,4umIPjkehX1r7uhmGvXiSV,2020-02-14 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
655,487,529,Sofia,Clairo,bedroom pop,2019.0,113,0.619,0.744,-9.805,0.231,0.641,189,0.598,0.039,81,C,49,22,2020-11-13--2020-11-20,4982892,2722638,7B3z0ySL9Rr0XvZEAjWZzM,2019-08-02 00:00:00,"['bedroom pop', 'indie pop', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
656,488,530,Photograph,Ed Sheeran,pop,2014.0,108,0.379,0.614,-10.48,0.0986,0.201,259,0.607,0.0476,83,E,176,9,2021-02-12--2021-02-19,4974880,83337783,1HNkqx9Ahdgi1Ixy2xkKkL,2014-06-21 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
657,488,530,Photograph,Ed Sheeran,pop,2014.0,108,0.379,0.614,-10.48,0.0986,0.201,259,0.607,0.0476,83,E,176,9,2021-02-12--2021-02-19,4974880,83337783,1HNkqx9Ahdgi1Ixy2xkKkL,2014-06-21 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
658,489,532,Madonna,"Bausa, Apache 207",german hip hop,2021.0,117,0.565,0.806,-8.96,0.0824,0.311,196,0.47,0.113,68,B,140,1,2021-02-19--2021-02-26,5936752,961181,6a3kNt1UlUOapDKmEr3JzZ,2021-02-26 00:00:00,"['german hip hop', 'german pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,
659,490,533,CLOUDS,NF,hip hop,2021.0,128,0.65,0.793,-3.944,0.854,0.809,244,0.371,0.397,69,C#/Db,144,1,2021-02-19--2021-02-26,5897983,5831194,5UMMPHPp6vRP6ghPpSUOzp,2021-02-18 00:00:00,"['hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
660,491,535,Skin,Sabrina Carpenter,alt z,2021.0,106,0.457,0.557,-5.372,0.0567,0.328,178,0.428,0.0335,76,G,50,5,2021-01-22--2021-01-29,5497942,3689546,03B2SfXuvDh1m9F4tqrX07,2021-01-22 00:00:00,"['alt z', 'dance pop', 'electropop', 'pop', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
661,492,536,Tyler Herro,Jack Harlow,deep underground hip hop,2020.0,123,0.756,0.794,-7.16,0.247,0.775,157,0.11,0.136,76,F,62,17,2020-10-23--2020-10-30,5168107,1053324,4DuUwzP4ALMqpquHU0ltAB,2020-10-22 00:00:00,"['deep underground hip hop', 'kentucky hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
662,493,537,Remember That Night?,Sara Kays,alt z,2020.0,124,0.61,0.679,-10.936,0.156,0.554,228,0.585,0.0305,78,G,173,5,2021-02-05--2021-02-12,5116325,251549,1nYzjrdVQ8RpF93M0jPFW7,2020-11-06 00:00:00,"['alt z', 'indie cafe pop', 'modern indie pop', 'pop', 'social media pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
663,494,538,Lifestyle (feat. Adam Levine),"Jason Derulo, Maroon 5",dance pop,2021.0,123,0.674,0.749,-5.128,0.169,0.711,154,0.0209,0.0366,78,A#/Bb,128,3,2021-01-22--2021-01-29,5059891,9778632,0osvOdeD3YXZiWkT8MKolJ,2021-01-21 00:00:00,"['dance pop', 'pop', 'pop rap', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
664,495,539,Fly Away,Tones And I,australian pop,2020.0,125,0.513,0.806,-6.208,0.217,0.503,179,0.217,0.0685,79,E,177,7,2021-01-29--2021-02-05,5053713,2820477,5ri4zqtWhG07hIuNNDWP76,2020-11-13 00:00:00,"['australian pop', 'pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
665,496,540,Despeinada,"Ozuna, Camilo",latin,2020.0,166,0.775,0.734,-3.855,0.123,0.72,225,0.186,0.0614,75,G#/Ab,37,25,2020-10-09--2020-10-16,5004462,29238936,0JAZWvvqttGFm4UMDsPQXC,2020-09-04 00:00:00,"['latin', 'puerto rican pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
666,497,541,motive (with Doja Cat),Ariana Grande,dance pop,2020.0,117,0.742,0.789,-5.664,0.166,0.661,168,0.0681,0.0652,80,A#/Bb,14,5,2020-10-30--2020-11-06,4986037,67208170,5GkQIP5mWPi4KZLLXeuFTT,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
667,498,542,I Don't Care (with Justin Bieber),Ed Sheeran,pop,2019.0,102,0.675,0.798,-5.041,0.0894,0.842,220,0.0912,0.0442,80,F#/Gb,28,57,2019-12-27--2020-01-03,4984399,83337783,3HVWdVOQ0ZA45FuZGSfvns,2019-05-10 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
668,498,542,I Don't Care (with Justin Bieber),Ed Sheeran,pop,2019.0,102,0.675,0.798,-5.041,0.0894,0.842,220,0.0912,0.0442,80,F#/Gb,28,57,2019-12-27--2020-01-03,4984399,83337783,3HVWdVOQ0ZA45FuZGSfvns,2019-05-10 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
669,499,544,"Nathy Peluso: Bzrp Music Sessions, Vol. 36","Bizarrap, Nathy Peluso",argentine hip hop,2020.0,94,0.655,0.65,-3.71,0.0691,0.735,172,0.25,0.405,77,C#/Db,83,11,2021-01-01--2021-01-08,5232509,3134041,78SeXVRJ7KCqVmOwTiFjnI,2020-11-27 00:00:00,"['argentine hip hop', 'pop venezolano', 'trap argentino', 'trap latino']",0,0,1,0,0,0,0,0,0,0,0,0,0,
670,500,545,Hawái - Remix,"Maluma, The Weeknd",latin,2020.0,180,0.788,0.766,-3.128,0.142,0.609,201,0.105,0.312,77,F#/Gb,17,15,2020-11-06--2020-11-13,5163323,26784251,0GzuHFG4Ql6DoyxFRnIk3F,2020-11-05 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,
671,501,546,Tattoo - Remix with Camilo,Rauw Alejandro,puerto rican pop,2020.0,97,0.637,0.848,-5.132,0.0521,0.698,223,0.0413,0.156,78,A,22,32,2020-08-28--2020-09-04,5120753,6096559,4ZRrLHqzhGRXYj2qcB4s5S,2020-07-09 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
672,502,548,Moonlight,XXXTENTACION,emo rap,2018.0,128,0.537,0.921,-5.723,0.102,0.711,136,0.556,0.0804,83,A,143,42,2020-06-26--2020-07-03,5003825,29566516,0JP9xo3adEtGSdUEISiszL,2018-03-16 00:00:00,"['emo rap', 'miami hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
673,503,549,Thinking out Loud,Ed Sheeran,pop,2014.0,79,0.445,0.781,-6.061,0.184,0.591,282,0.474,0.0295,82,D,182,6,2020-10-16--2020-10-23,4995623,83337783,34gCuhDGsG4bRPIf9bb02f,2014-06-21 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
674,503,549,Thinking out Loud,Ed Sheeran,pop,2014.0,79,0.445,0.781,-6.061,0.184,0.591,282,0.474,0.0295,82,D,182,6,2020-10-16--2020-10-23,4995623,83337783,34gCuhDGsG4bRPIf9bb02f,2014-06-21 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
675,504,550,Toosie Slide,Drake,canadian hip hop,2020.0,82,0.454,0.834,-9.75,0.114,0.837,248,0.321,0.201,78,C#/Db,2,46,2020-05-01--2020-05-08,4966878,56327031,127QTOFJsJQp5LbJbu3A1y,2020-04-03 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
676,504,550,Toosie Slide,Drake,canadian hip hop,2020.0,82,0.454,0.834,-9.75,0.114,0.837,248,0.321,0.201,78,C#/Db,2,46,2020-05-01--2020-05-08,4966878,56327031,127QTOFJsJQp5LbJbu3A1y,2020-04-03 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Chile
677,504,550,Toosie Slide,Drake,canadian hip hop,2020.0,82,0.454,0.834,-9.75,0.114,0.837,248,0.321,0.201,78,C#/Db,2,46,2020-05-01--2020-05-08,4966878,56327031,127QTOFJsJQp5LbJbu3A1y,2020-04-03 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,Poland
678,504,550,Toosie Slide,Drake,canadian hip hop,2020.0,82,0.454,0.834,-9.75,0.114,0.837,248,0.321,0.201,78,C#/Db,2,46,2020-05-01--2020-05-08,4966878,56327031,127QTOFJsJQp5LbJbu3A1y,2020-04-03 00:00:00,"['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
679,505,551,Earned It (Fifty Shades Of Grey),The Weeknd,canadian contemporary r&b,2015.0,120,0.291,0.659,-8.275,0.0771,0.406,278,0.405,0.0348,69,D,167,2,2021-02-05--2021-02-12,4929647,35340069,4frLb7nWtsz2ymBE6k2GRP,2015-08-28 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
680,506,552,ily (i love you baby) (feat. Emilee),Surf Mesa,tropical house,2019.0,112,0.774,0.674,-7.567,0.393,0.33,177,0.0686,0.0892,81,B,9,46,2020-06-05--2020-06-12,4908929,132855,62aP9fBQKYKxi7PDXwcUAS,2019-11-26 00:00:00,['tropical house'],0,0,0,0,0,0,1,0,0,0,0,0,0,
681,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
682,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
683,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
684,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Germany
685,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
686,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
687,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
688,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Netherlands
689,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Belgium
690,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
691,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
692,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
693,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,South Korea
694,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Greece
695,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
696,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
697,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
698,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
699,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
700,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
701,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
702,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
703,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
704,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
705,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
706,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
707,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
708,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
709,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
710,507,553,Wonderwall,Oasis,beatlesque,1905.0,174,0.893,0.375,-4.097,0.187,0.434,259,0.000509,0.0406,78,D,193,1,2021-02-12--2021-02-19,4902737,6478565,7ygpwy2qP3NbrxVkHvUhXY,1995,"['beatlesque', 'britpop', 'madchester', 'permanent wave', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
711,508,554,Everybody Dies In Their Nightmares,XXXTENTACION,emo rap,2017.0,130,0.57,0.734,-7.066,0.112,0.689,96,0.847,0.133,83,G,181,7,2021-01-29--2021-02-05,4847224,29566516,3GVkPk8mqxz0itaAriG1L7,2017-08-25 00:00:00,"['emo rap', 'miami hip hop']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
712,509,555,Bad Boy (with Young Thug),Juice WRLD,chicago rap,2021.0,82,0.674,0.697,-6.326,0.138,0.198,158,0.00215,0.0533,76,C#/Db,27,4,2021-01-15--2021-01-22,6011642,19102888,43CIWpJaJHRcI4mUSjqgc2,2021-01-15 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
713,510,556,Lo Vas A Olvidar (with ROSALÃA),Billie Eilish,electropop,2021.0,135,0.243,0.343,-14.66,0.0668,0.032,204,0.721,0.0777,68,E,19,3,2021-01-22--2021-01-29,5963380,47061119,0psS4i5YooJrXfDnGvWRLi,2021-01-21 00:00:00,"['electropop', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,United States
714,511,557,Floating Through Space,"Sia, David Guetta",australian dance,2021.0,105,0.844,0.575,-4.89,0.114,0.277,178,0.00172,0.072,78,F#/Gb,152,1,2021-02-05--2021-02-12,5579697,20528724,2AceGjiX9isUbXmMZa0Dl1,2021-02-04 00:00:00,"['australian dance', 'australian pop', 'dance pop', 'pop']",0,0,0,0,0,0,1,0,0,0,0,0,0,
715,512,558,Can't Feel My Face,The Weeknd,canadian contemporary r&b,2015.0,108,0.769,0.705,-5.526,0.105,0.583,214,0.113,0.0425,80,A,157,1,2021-02-05--2021-02-12,5479407,35340069,22VdIZQfgXJea34mQxlt81,2015-08-28 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
716,513,559,You (with Marshmello & Vance Joy),benny blanco,electropop,2021.0,103,0.563,0.668,-6.433,0.119,0.305,170,0.0493,0.0522,73,B,89,2,2021-01-29--2021-02-05,5342938,804613,1GkHyypTFkUf0QQKwYoXH4,2021-01-29 00:00:00,"['electropop', 'pop', 'pop rap']",1,0,0,0,0,0,0,0,0,1,0,0,0,United States
717,514,560,Call Out My Name,The Weeknd,canadian contemporary r&b,2018.0,134,0.593,0.461,-4.954,0.307,0.175,229,0.17,0.0356,80,C#/Db,168,3,2020-03-20--2020-03-27,5233359,35340069,09mEdoA6zrmBPgTEN5qXmN,2018-03-30 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
718,515,561,Midnight Sky,Miley Cyrus,dance pop,2020.0,110,0.814,0.705,-5.466,0.203,0.259,224,0.00115,0.0346,76,E,14,26,2020-08-14--2020-08-21,5208100,15778531,27ycaQnQAxaPiyeg3nr2aB,2020-08-14 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
719,515,561,Midnight Sky,Miley Cyrus,dance pop,2020.0,110,0.814,0.705,-5.466,0.203,0.259,224,0.00115,0.0346,76,E,14,26,2020-08-14--2020-08-21,5208100,15778531,27ycaQnQAxaPiyeg3nr2aB,2020-08-14 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
720,516,562,Pressure (feat. Tove Lo),Martin Garrix,dance pop,2021.0,115,0.558,0.859,-8.991,0.124,0.357,145,0.659,0.0902,76,G,175,1,2021-02-05--2021-02-12,5197587,14921269,4ga4WvRNhMsIL38pkBbnIN,2021-02-05 00:00:00,"['dance pop', 'dutch edm', 'edm', 'pop', 'pop dance', 'progressive house', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,Netherlands
721,517,563,Can You Feel My Heart,Bring Me The Horizon,melodic metalcore,2013.0,171,0.859,0.15,-2.827,0.387,0.354,229,0.00201,0.0595,77,E,140,4,2021-01-22--2021-01-29,5092250,3912138,0WSa1sucoNRcEeULlZVQXj,2013-04-01 00:00:00,"['melodic metalcore', 'metalcore', 'rock', 'uk metalcore']",0,0,0,1,0,0,0,0,0,0,0,0,0,
722,518,564,Agua de Jamaica,Maluma,latin,2021.0,174,0.665,0.664,-3.616,0.411,0.726,177,0.123,0.0879,75,A#/Bb,167,2,2021-01-29--2021-02-05,5072462,26784251,41BzKiCrKpUQHS3TP0jmdr,2021-01-28 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,Colombia
723,519,565,Mds,"Kawe, Mc Lele JP",brazilian hip hop,2020.0,140,0.561,0.885,-5.331,0.121,0.644,126,0.261,0.249,72,F#/Gb,162,3,2021-01-29--2021-02-05,5046418,444736,0QglpM23kl9ldvVdoYNZwF,2020-05-19 00:00:00,"['brazilian hip hop', 'funk ostentacao']",0,0,1,0,0,0,0,0,0,0,0,0,0,
724,520,566,Heartless,The Weeknd,canadian contemporary r&b,2020.0,170,0.746,0.537,-5.507,0.156,0.252,199,0.0236,0.15,77,A#/Bb,18,23,2020-03-20--2020-03-27,4995578,35340069,6bnF93Rx87YqUBLSgjiMU8,2020-03-20 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
725,521,567,pov,Ariana Grande,dance pop,2020.0,132,0.534,0.487,-5.664,0.1,0.173,202,0.36,0.0555,79,C,20,15,2020-11-13--2020-11-20,4906738,67208170,3UoULw70kMsiVXxW0L3A33,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
726,522,568,Be Alright,Dean Lewis,australian pop,2018.0,127,0.586,0.553,-6.319,0.0813,0.443,197,0.697,0.0362,80,B,138,49,2020-10-16--2020-10-23,4900492,1692635,3EPXxR3ImUwfayaurPi3cm,2018-06-29 00:00:00,"['australian pop', 'indie cafe pop', 'pop', 'pop rock', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Australia
727,523,569,Cry Baby (feat. DaBaby),Megan Thee Stallion,houston rap,2020.0,130,0.437,0.957,-7.882,0.219,0.616,138,0.00402,0.359,76,B,174,3,2021-01-08--2021-01-15,4884711,4794212,4aarlAfLKVCTxUDNgbwhjH,2020-11-20 00:00:00,"['houston rap', 'pop', 'pop rap', 'trap queen']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
728,524,570,Mi Cuarto,Jerry Di,cubaton,2020.0,97,0.525,0.854,-4.426,0.146,0.63,198,0.819,0.214,76,C#/Db,47,25,2020-09-25--2020-10-02,4873380,149682,6fmQjRuo7XvRFCK2qex5hQ,2020-04-03 00:00:00,"['cubaton', 'dominican pop', 'pop venezolano', 'reggaeton', 'reggaeton flow', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
729,525,571,Ohne Dich,"KASIMIR1441, badmómzjay, WILDBWOYS",german alternative rap,2021.0,156,0.535,0.807,-6.519,0.125,0.925,126,0.191,0.349,70,B,99,3,2021-01-15--2021-01-22,5487774,197320,4hSJUp6k7QeHLxU32MrLIU,2021-01-14 00:00:00,"['german alternative rap', 'german hip hop', 'german trap', 'tekk']",0,0,1,0,1,0,0,0,0,0,0,0,0,
730,526,572,"Gravity (feat. Tyler, The Creator)","Brent Faiyaz, DJ Dahi",dmv rap,2021.0,164,0.615,0.539,-8.746,0.144,0.493,215,0.173,0.252,76,C#/Db,176,1,2021-01-29--2021-02-05,5136895,1726216,6u3CPnFMKANYgfdiifFOiJ,2021-01-29 00:00:00,"['dmv rap', 'pop', 'r&b', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
731,527,573,Vibez,ZAYN,dance pop,2021.0,97,0.659,0.635,-7.499,0.105,0.34,164,0.242,0.116,69,G,55,4,2021-01-15--2021-01-22,5071718,16655692,709F3MwiVvLD0LQXeKs5Cz,2021-01-08 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
732,528,574,"All I Want - From ""High School Musical: The Musical: The Series""",Olivia Rodrigo,pop,2019.0,78,0.43,0.376,-6.585,0.0912,0.129,178,0.0902,0.0328,76,C,103,12,2021-01-15--2021-01-22,5052801,6313514,4Yxc55NX3tAXC2mHRAhtcW,2019-11-27 00:00:00,['pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,United States
733,529,575,Daisy,Ashnikko,electropop,2020.0,122,0.663,0.834,-6.143,0.372,0.774,147,0.235,0.133,76,G#/Ab,45,20,2020-10-23--2020-10-30,5030670,1248499,0AUvWawuP0ibk4SQ3sIZjk,2020-07-09 00:00:00,"['electropop', 'escape room', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,Latvia
734,529,575,Daisy,Ashnikko,electropop,2020.0,122,0.663,0.834,-6.143,0.372,0.774,147,0.235,0.133,76,G#/Ab,45,20,2020-10-23--2020-10-30,5030670,1248499,0AUvWawuP0ibk4SQ3sIZjk,2020-07-09 00:00:00,"['electropop', 'escape room', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,
735,530,576,Wasted On You,Morgan Wallen,contemporary country,2021.0,196,0.657,0.505,-5.24,0.126,0.252,179,0.373,0.0318,76,B,83,4,2021-01-08--2021-01-15,4948563,2147875,3cBsEDNhFI9E82vPj3kvi3,2021-01-08 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
736,531,577,La Jeepeta - Remix,"Nio Garcia, Anuel AA, Myke Towers, Brray, Juanka",latin,2020.0,176,0.715,0.815,-4.65,0.091,0.786,346,0.3,0.207,75,E,13,38,2020-07-31--2020-08-07,4942545,2127531,1mohfLaTJtB2RplHLQVM70,2020-04-24 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
737,532,578,Los Dioses,"Anuel AA, Ozuna",latin,2021.0,94,0.737,0.817,-5.453,0.092,0.67,207,0.046,0.102,73,F#/Gb,137,1,2021-01-22--2021-01-29,5929507,18306226,73O30uMI7n6DuzBmbtO7kC,2021-01-22 00:00:00,"['latin', 'reggaeton', 'reggaeton flow', 'trap boricua', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
738,533,579,Si Me Tomo Una Cerveza,"Migrantes, Alico",cumbia pop,2020.0,85,0.613,0.72,-6.899,0.155,0.857,183,0.185,0.0572,74,C#/Db,132,9,2021-01-01--2021-01-08,5427534,114348,3lCbsHaN1wCxyDzcNN2x4N,2020-11-07 00:00:00,['cumbia pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
739,534,580,Somebody’s Problem,Morgan Wallen,contemporary country,2020.0,137,0.54,0.657,-7.675,0.123,0.625,162,0.662,0.0287,70,F,90,4,2021-01-08--2021-01-15,5332437,2147875,0SErdEdRcVX1uJCf1eTGYH,2020-11-20 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
740,535,581,De Una Vez,Selena Gomez,dance pop,2021.0,164,0.479,0.659,-6.79,0.268,0.0395,156,0.152,0.2,70,B,66,2,2021-01-15--2021-01-22,5186567,28931149,1v3lhrZEsOcazqR2QIyyRu,2021-03-12 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
741,536,582,Way Out (feat. Big Sean),Jack Harlow,deep underground hip hop,2020.0,108,0.582,0.945,-8.357,0.103,0.907,169,0.114,0.0719,72,B,121,7,2021-01-01--2021-01-08,4962949,1053324,6rLi6PyWXu1rPlShuIZpj6,2020-12-09 00:00:00,"['deep underground hip hop', 'kentucky hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
742,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
743,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
744,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
745,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
746,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
747,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,Australia
748,537,583,Diamonds,Sam Smith,dance pop,2020.0,104,0.667,0.653,-6.764,0.107,0.556,214,0.154,0.0423,77,A#/Bb,42,17,2020-09-18--2020-09-25,4931163,17097317,5hvwx5i67IwnCkjl9VHkNv,2020-09-17 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
749,538,584,Dancing in My Room,347aidan,sad rap,2020.0,120,0.413,0.98,-11.052,0.17,0.764,181,0.671,0.101,79,G#/Ab,190,3,2021-01-01--2021-01-08,4914093,211500,6Pgmqg15yVexuOgtzuxwoX,2020-10-26 00:00:00,['sad rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
750,539,585,De Cora <3,"Rauw Alejandro, J Balvin",puerto rican pop,2020.0,176,0.683,0.811,-2.028,0.128,0.571,191,0.46,0.241,73,B,116,8,2020-11-13--2020-11-20,4864544,6096559,22Sh5dlwbERqJAq1fZk5b2,2020-11-13 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,
751,540,586,champagne problems,Taylor Swift,pop,2020.0,171,0.24,0.462,-12.077,0.113,0.32,244,0.92,0.0377,75,C,10,7,2020-12-11--2020-12-18,4848954,42227614,0sY6ZUTh4yoctD8VIXz339,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
752,541,587,Go Crazy,"Chris Brown, Young Thug",dance pop,2020.0,94,0.578,0.755,-8.932,0.25,0.581,177,0.316,0.145,80,C,37,35,2020-09-11--2020-09-18,4833081,14073083,1IIKrJVP1C9N7iPtG6eOsK,2020-05-08 00:00:00,"['dance pop', 'pop', 'pop rap', 'r&b', 'rap']",1,0,0,0,0,0,1,0,0,0,0,0,0,
753,542,588,Reminds Me Of You,"Juice WRLD, The Kid LAROI",chicago rap,2020.0,150,0.631,0.613,-6.965,0.169,0.33,159,0.0663,0.12,75,E,73,6,2020-12-11--2020-12-18,5942551,19102888,5YSHygGN9D0mID1NsVd5my,2020-12-08 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
754,543,589,Don't Play,"Anne-Marie, KSI, Digital Farm Animals",dance pop,2021.0,128,0.784,0.695,-6.564,0.0843,0.52,189,0.0889,0.0402,73,F#/Gb,177,1,2021-01-15--2021-01-22,5119828,8153871,4I5bvu2KDsrCg0EWHIcvul,2021-01-15 00:00:00,"['dance pop', 'pop', 'pop dance', 'post-teen pop', 'tropical house', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
755,544,591,Buss It,Erica Banks,trap queen,2020.0,110,0.502,0.956,-5.995,0.238,0.795,187,0.0593,0.213,72,A,191,1,2021-01-15--2021-01-22,4915403,41551,25j0Sape7qZbq6ZPLFefTT,2020-06-19 00:00:00,['trap queen'],0,0,1,0,0,0,0,0,0,0,0,0,0,
756,545,592,Kings & Queens,Ava Max,dance pop,2020.0,130,0.69,0.637,-4.057,0.124,0.457,163,0.00786,0.0405,82,C#/Db,41,39,2020-06-26--2020-07-03,4855690,3916979,7a53HqqArd4b9NF4XAmlbI,2020-09-18 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
757,546,593,Lovesick Girls,BLACKPINK,k-pop,2020.0,128,0.707,0.654,-5.661,0.0873,0.448,195,0.00559,0.0664,75,F#/Gb,6,15,2020-10-02--2020-10-09,4796365,23848461,4Ws314Ylb27BVsvlZOy30C,2020-10-02 00:00:00,"['k-pop', 'k-pop girl group']",1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
758,547,594,Caramelo,Ozuna,latin,2020.0,168,0.806,0.728,-3.766,0.153,0.698,218,0.0531,0.0623,74,F#/Gb,17,31,2020-08-07--2020-08-14,4790233,29238936,3gD4J3RUHy4OUuZ3qAiaiG,2020-06-11 00:00:00,"['latin', 'puerto rican pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
759,548,595,Deep End,Fousheé,brooklyn drill,2020.0,134,0.479,0.868,-6.687,0.102,0.776,116,0.703,0.445,72,E,67,13,2020-11-13--2020-11-20,5622565,411262,2AlYncTpVHKwHb55F9lF6O,2020-06-05 00:00:00,"['brooklyn drill', 'nyc rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
760,549,596,Sand In My Boots,Morgan Wallen,contemporary country,2021.0,70,0.537,0.403,-6.628,0.112,0.414,203,0.59,0.031,75,D#/Eb,158,1,2021-01-08--2021-01-15,5446609,2147875,0uRrG2jRR5tuifsYIJHEao,2021-01-08 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
761,550,597,865,Morgan Wallen,contemporary country,2021.0,88,0.584,0.532,-5.254,0.101,0.367,191,0.723,0.0248,70,G#/Ab,168,1,2021-01-08--2021-01-15,5160123,2147875,0sKEilrw1GrBlG6qsTCrP4,2021-01-08 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
762,551,598,7 Summers,Morgan Wallen,contemporary country,2021.0,204,0.786,0.466,-5.13,0.125,0.571,211,0.417,0.0328,73,C,53,5,2020-08-14--2020-08-21,5064504,2147875,4obHzpwGrjoTuZh2DItEMZ,2021-01-08 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
763,552,599,HACIENDO QUE ME AMAS,Bad Bunny,latin,2020.0,170,0.411,0.584,-7.147,0.0955,0.412,218,0.869,0.0838,78,A#/Bb,21,7,2020-11-27--2020-12-04,4935633,36177712,26QApq0cuO9brJigr0C0W4,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
764,553,600,La Luz,"Sech, J Balvin",latin,2020.0,94,0.697,0.665,-4.819,0.599,0.556,217,0.427,0.154,70,A,65,10,2020-11-06--2020-11-13,4906324,8766508,5zj8WNkBrEzlI5FKeYV4ol,2020-10-31 00:00:00,"['latin', 'panamanian pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
765,554,601,The Woo (feat. 50 Cent & Roddy Ricch),Pop Smoke,brooklyn drill,2020.0,100,0.618,0.49,-5.655,0.259,0.286,202,0.0221,0.104,79,C#/Db,17,25,2020-07-03--2020-07-10,4892682,6852509,1H7KnK26kc1YyellpbINEn,2020-07-03 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
766,555,602,More Than My Hometown,Morgan Wallen,contemporary country,2021.0,126,0.869,0.62,-5.479,0.131,0.597,217,0.615,0.0462,75,F#/Gb,188,1,2021-01-08--2021-01-15,4879971,2147875,5OELUCYgOHKFAvCERnAvfS,2021-01-08 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
767,556,603,Warning,Morgan Wallen,contemporary country,2021.0,115,0.664,0.633,-5.037,0.108,0.268,157,0.46,0.0294,68,A#/Bb,190,1,2021-01-08--2021-01-15,4860714,2147875,64SCQtbRtmO28ks1QhS3w5,2021-01-08 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,
768,557,604,Recairei - Ao Vivo,Os Barões Da Pisadinha,forro,2020.0,168,0.937,0.582,-2.118,0.684,0.939,167,0.449,0.0858,69,A#/Bb,117,10,2020-12-25--2021-01-01,4815342,4281787,71FrGl0XcpL3VId65tB5mg,2020-04-17 00:00:00,"['forro', 'piseiro']",0,0,0,0,0,1,0,0,0,0,0,0,0,
769,558,605,Ice Cream (with Selena Gomez),BLACKPINK,k-pop,2020.0,160,0.701,0.79,-4.81,0.0311,0.91,178,0.0317,0.365,71,A,5,19,2020-08-28--2020-09-04,4812765,23848461,4JUPEh2DVSXFGExu4Uxevz,2020-10-02 00:00:00,"['k-pop', 'k-pop girl group']",1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
770,559,606,Be Kind (with Halsey),Marshmello,brostep,2020.0,94,0.633,0.63,-7.088,0.0541,0.452,173,0.00776,0.0457,80,E,22,32,2020-05-08--2020-05-15,4790427,31552500,3Z8FwOEN59mRMxDCtb8N0A,2020-05-01 00:00:00,"['brostep', 'edm', 'pop', 'pop dance', 'progressive electro house']",0,0,0,0,0,0,1,0,0,0,0,0,0,United States
771,560,607,Fever,"Dua Lipa, Angèle",dance pop,2020.0,115,0.693,0.868,-7.052,0.106,0.396,157,0.0597,0.181,73,F#/Gb,76,8,2020-11-06--2020-11-13,4769618,27167675,3wJVBz7gvGTwTWVAxFa6ny,2020-10-29 00:00:00,"['dance pop', 'pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
772,561,608,Angst,Apache 207,german hip hop,2021.0,100,0.79,0.599,-4.352,0.0778,0.528,202,0.0213,0.386,67,A,141,2,2020-03-06--2020-03-13,5317174,1674348,5yUzqd3H7cmJ1no6B4uTzu,2021-01-01 00:00:00,['german hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
773,562,609,"no body, no crime (feat. HAIM)",Taylor Swift,pop,2020.0,79,0.613,0.546,-7.589,0.103,0.535,216,0.418,0.0264,68,G,15,4,2020-12-11--2020-12-18,4986214,42227614,3RaT22zZsxVYxxKR7TAaYF,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
774,563,610,Sunday Best,Surfaces,bedroom soul,2019.0,112,0.525,0.878,-6.832,0.0714,0.694,159,0.183,0.0578,80,F,13,44,2020-04-10--2020-04-17,4858392,724903,1Cv1YLb4q0RzL6pybtaMLo,2019-01-06 00:00:00,"['bedroom soul', 'pop']",0,0,0,0,0,0,0,0,1,0,0,0,0,
775,564,612,Happier,"Marshmello, Bastille",brostep,2018.0,100,0.792,0.687,-2.749,0.167,0.671,215,0.191,0.0452,82,F,66,46,2019-12-27--2020-01-03,4655272,31552500,2dpaYNEQHiRxtZbfNsse99,2018-08-17 00:00:00,"['brostep', 'edm', 'pop', 'pop dance', 'progressive electro house']",0,0,0,0,0,0,1,0,0,0,0,0,0,
776,565,613,Don't Stop Me Now - Remastered 2011,Queen,classic rock,1978.0,156,0.865,0.563,-5.277,0.77,0.601,210,0.0472,0.16,74,F,138,13,2019-12-27--2020-01-03,4630572,35910149,7hQJA50XrCWABAu5v6QZ4i,1978-11-10 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
777,565,613,Don't Stop Me Now - Remastered 2011,Queen,classic rock,1978.0,156,0.865,0.563,-5.277,0.77,0.601,210,0.0472,0.16,74,F,138,13,2019-12-27--2020-01-03,4630572,35910149,7hQJA50XrCWABAu5v6QZ4i,1978-11-10 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
778,565,613,Don't Stop Me Now - Remastered 2011,Queen,classic rock,1978.0,156,0.865,0.563,-5.277,0.77,0.601,210,0.0472,0.16,74,F,138,13,2019-12-27--2020-01-03,4630572,35910149,7hQJA50XrCWABAu5v6QZ4i,1978-11-10 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Vietnam
779,565,613,Don't Stop Me Now - Remastered 2011,Queen,classic rock,1978.0,156,0.865,0.563,-5.277,0.77,0.601,210,0.0472,0.16,74,F,138,13,2019-12-27--2020-01-03,4630572,35910149,7hQJA50XrCWABAu5v6QZ4i,1978-11-10 00:00:00,"['classic rock', 'glam rock', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,Japan
780,566,614,Azul,J Balvin,latin,2020.0,94,0.836,0.843,-2.474,0.0532,0.65,206,0.0816,0.0695,77,B,61,39,2020-03-20--2020-03-27,4606011,29067437,2lCkncy6bIB0LTMT7kvrD1,2020-03-19 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,Colombia
781,567,615,Basta Você Me Ligar - Ao Vivo,"Os Barões Da Pisadinha, Xand Avião",forro,2020.0,168,0.914,0.599,-2.415,0.694,0.831,183,0.5,0.0629,68,F,183,2,2020-12-25--2021-01-01,4580123,4281787,3AV1KI22k1jGMz792lDrj1,2020-05-29 00:00:00,"['forro', 'piseiro']",0,0,0,0,0,1,0,0,0,0,0,0,0,
782,568,616,Tequila Shots,Kid Cudi,hip hop,2020.0,90,0.556,0.712,-7.214,0.527,0.22,194,0.084,0.0531,74,F,49,4,2020-12-11--2020-12-18,4540781,5002317,30KctD1WsHKTIYczXjip5a,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
783,569,617,Lose Control,"MEDUZA, Becky Hill, Goodboys",dance pop,2019.0,124,0.526,0.598,-8.659,0.14,0.529,169,0.129,0.0415,82,A#/Bb,27,45,2020-02-07--2020-02-14,4516053,441714,7CHi4DtfK4heMlQaudCuHK,2019-10-11 00:00:00,"['dance pop', 'edm', 'pop dance', 'pop house', 'tropical house']",1,0,0,0,0,0,1,0,0,0,0,0,0,
784,570,618,I CAN'T STOP ME,TWICE,k-pop,2020.0,150,0.88,0.657,-3.672,0.463,0.769,206,0.121,0.102,76,A#/Bb,68,8,2020-10-30--2020-11-06,4504304,9998991,37ZtpRBkHcaq6hHy0X98zn,2020-10-26 00:00:00,"['k-pop', 'k-pop girl group']",1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
785,571,619,E-GIRLS ARE RUINING MY LIFE!,"CORPSE, Savage Ga$p",dream smp,2020.0,85,0.937,0.614,-7.443,0.103,0.386,106,0.00161,0.115,77,C#/Db,158,5,2020-10-30--2020-11-06,4488125,1777797,7bCfHiRcfUjG0YVVNUL7Ve,2020-09-25 00:00:00,"['dream smp', 'viral rap']",0,0,0,0,0,1,0,0,0,0,0,0,0,
786,572,620,All I Want for Christmas Is You,Mariah Carey,dance pop,1994.0,150,0.627,0.336,-7.463,0.0708,0.35,242,0.164,0.0384,65,G,1,10,2020-12-18--2020-12-25,23235257,6931357,0bYg9bo50gSsH3LtXe2SQn,1994-11-01 00:00:00,"['dance pop', 'pop', 'r&b', 'urban contemporary']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
787,573,621,Last Christmas,Wham!,disco,1984.0,108,0.478,0.735,-12.472,0.355,0.947,263,0.189,0.0293,63,D,2,8,2020-12-18--2020-12-25,20709328,1631876,2FRnf9qhLbvw8fu4IBXx78,1984-11-29 00:00:00,"['disco', 'europop', 'new romantic', 'new wave', 'new wave pop', 'soft rock', 'synthpop']",0,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
788,574,622,Santa Tell Me,Ariana Grande,dance pop,2014.0,192,0.621,0.525,-7.364,0.294,0.591,205,0.0489,0.116,61,G,3,7,2020-12-18--2020-12-25,16657592,67208170,0lizgQ7Qw35od7CYaoMBZb,2014-11-24 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
789,575,623,Rockin' Around The Christmas Tree,Brenda Lee,adult standards,1964.0,67,0.472,0.589,-8.749,0.505,0.898,127,0.614,0.0502,58,G#/Ab,5,7,2020-12-18--2020-12-25,16613649,222627,2EjXfH91m7f8HiJN1yQg97,1964-10-19 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'rockabilly', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
790,576,625,It's Beginning to Look a Lot like Christmas,Michael Bublé,adult standards,2012.0,95,0.214,0.339,-11.714,0.341,0.363,207,0.908,0.0375,55,E,6,7,2020-12-18--2020-12-25,15424001,4702232,5a1iz510sv2W9Dt1MvFd5R,2012-11-09 00:00:00,"['adult standards', 'canadian pop', 'jazz pop', 'lounge']",1,0,0,0,0,0,0,0,0,0,0,0,0,
791,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
792,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
793,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
794,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,
795,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,
796,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
797,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
798,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
799,577,626,It's the Most Wonderful Time of the Year,Andy Williams,adult standards,1963.0,202,0.598,0.24,-8.435,0.117,0.776,152,0.766,0.0369,55,G,8,7,2020-12-18--2020-12-25,14582001,369548,5hslUAKq9I9CG2bAulFkHN,1963-11-24 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'mellow gold', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
800,578,627,Underneath the Tree,Kelly Clarkson,dance pop,2013.0,160,0.812,0.509,-5.439,0.214,0.689,230,0.00128,0.0537,49,G#/Ab,9,7,2020-12-18--2020-12-25,12266990,7869617,3YZE5qDV7u1ZD1gZc47ZeR,2013-10-29 00:00:00,"['dance pop', 'neo mellow', 'pop', 'pop rock', 'post-teen pop', 'talent show']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
801,579,628,Feliz Navidad,José Feliciano,latin pop,2002.0,149,0.831,0.513,-9.004,0.336,0.963,183,0.55,0.0383,49,D,14,6,2020-12-18--2020-12-25,11664490,239129,0oPdaY4dXtc3ZsaG17V972,2002-09-24 00:00:00,"['latin pop', 'puerto rican pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
802,580,629,Let It Snow! Let It Snow! Let It Snow!,Dean Martin,adult standards,1959.0,134,0.24,0.451,-14.014,0.175,0.701,118,0.912,0.0351,54,C#/Db,11,6,2020-12-18--2020-12-25,10884855,1139096,2uFaJJtFpPDc5Pa95XzTvg,1959-01-01 00:00:00,"['adult standards', 'easy listening', 'lounge', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
803,581,630,Let It Snow! Let It Snow! Let It Snow! (with The B. Swanson Quartet),Frank Sinatra,adult standards,1994.0,142,0.259,0.652,-13.336,0.362,0.836,156,0.903,0.0595,53,D,19,6,2020-12-18--2020-12-25,10787165,4953667,4kKdvXD0ez7jp1296JmAts,1994-11-08 00:00:00,"['adult standards', 'easy listening', 'lounge']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
804,582,631,Mistletoe,Justin Bieber,canadian pop,2011.0,162,0.56,0.657,-9.049,0.0794,0.854,183,0.498,0.0467,59,F#/Gb,15,6,2020-12-18--2020-12-25,10609206,48544923,7xapw9Oy21WpfEcib2ErSA,2011-01-01 00:00:00,"['canadian pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
805,583,633,Do They Know It's Christmas? - 1984 Version,Band Aid,musical advocacy,2004.0,115,0.642,0.599,-6.936,0.0992,0.349,223,0.164,0.0363,51,C,17,6,2020-12-18--2020-12-25,10476212,4883,0247StOpd3AkeBQzANX4Zf,2004-01-01 00:00:00,['musical advocacy'],0,0,0,0,0,1,0,0,0,0,0,0,0,
806,583,633,Do They Know It's Christmas? - 1984 Version,Band Aid,musical advocacy,2004.0,115,0.642,0.599,-6.936,0.0992,0.349,223,0.164,0.0363,51,C,17,6,2020-12-18--2020-12-25,10476212,4883,0247StOpd3AkeBQzANX4Zf,2004-01-01 00:00:00,['musical advocacy'],0,0,0,0,0,1,0,0,0,0,0,0,0,
807,584,634,Wonderful Christmastime - Edited Version / Remastered 2011,Paul McCartney,album rock,1980.0,95,0.511,0.774,-8.914,0.0672,0.771,228,0.322,0.0319,51,B,23,4,2020-12-18--2020-12-25,9882989,3609658,1SV1fxF65n9NhRHp3KlBuu,1980-05-16 00:00:00,"['album rock', 'art rock', 'beatlesque', 'classic rock', 'mellow gold', 'rock', 'soft rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
808,585,635,Holly Jolly Christmas,Michael Bublé,adult standards,2012.0,151,0.465,0.647,-8.308,0.0882,0.699,120,0.865,0.0428,48,G,21,6,2020-12-18--2020-12-25,9852792,4702232,5PuKlCjfEVIXl0ZBp5ZW9g,2012-11-09 00:00:00,"['adult standards', 'canadian pop', 'jazz pop', 'lounge']",1,0,0,0,0,0,0,0,0,0,0,0,0,
809,586,636,Happy Xmas (War Is Over) - Remastered 2010,"John Lennon, Yoko Ono",album rock,2010.0,146,0.64,0.321,-10.023,0.718,0.414,215,0.28,0.0324,53,D,24,5,2020-12-18--2020-12-25,9509781,4313100,27RYrbL6S02LNVhDWVl38b,2010-10-05 00:00:00,"['album rock', 'art rock', 'beatlesque', 'classic rock', 'folk rock', 'mellow gold', 'rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
810,587,638,The Christmas Song (Merry Christmas To You),Nat King Cole,adult standards,1905.0,79,0.21,0.319,-15.231,0.138,0.209,193,0.92,0.0341,53,C#/Db,32,5,2020-12-18--2020-12-25,8478518,1634288,4PS1e8f2LvuTFgUs1Cn3ON,1962,"['adult standards', 'lounge', 'soul', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
811,588,639,White Christmas,"Bing Crosby, Ken Darby Singers, John Scott Trotter & His Orchestra",adult standards,1942.0,131,0.158,0.317,-16.485,0.338,0.247,178,0.673,0.0381,51,A,39,5,2020-12-18--2020-12-25,7045348,359973,4so0Wek9Ig1p6CRCHuINwW,1942-01-01 00:00:00,"['adult standards', 'easy listening', 'lounge', 'swing', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,
812,589,640,Slay3r,Playboi Carti,atl hip hop,2020.0,140,0.661,0.885,-5.062,0.334,0.436,165,0.165,0.141,63,E,114,1,2020-12-25--2021-01-01,6912271,4958353,1eMNW1HQjF1dbb4GtnmpaX,2020-12-25 00:00:00,"['atl hip hop', 'plugg', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
813,590,641,A Holly Jolly Christmas - Single Version,Burl Ives,adult standards,1965.0,140,0.375,0.683,-13.056,0.076,0.888,136,0.579,0.0303,49,C,42,5,2020-12-18--2020-12-25,6716353,58479,77khP2fIVhSW23NwxrRluh,1965-01-01 00:00:00,"['adult standards', 'american folk revival']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
814,591,642,Fairytale of New York (feat. Kirsty MacColl),The Pogues,celtic,1988.0,78,0.551,0.271,-7.48,0.256,0.428,273,0.582,0.0457,55,D,47,5,2020-12-18--2020-12-25,6404964,382997,3VTNVsTTu05dmTsVFrmGpK,1988-09-05 00:00:00,"['celtic', 'celtic punk', 'celtic rock', 'folk punk', 'irish folk', 'punk']",0,0,0,0,0,1,0,0,0,0,0,0,0,United Kingdom
815,592,643,Merry Christmas Everyone,Shakin' Stevens,classic uk pop,1991.0,203,0.904,0.534,-3.315,0.128,0.96,221,0.129,0.0369,47,A,38,5,2020-12-18--2020-12-25,6052105,99249,2TE4xW3ImvpltVU0cPcKUn,1991-11-25 00:00:00,"['classic uk pop', 'new wave pop', 'rock-and-roll', 'rockabilly', 'soft rock']",1,0,0,0,0,0,0,0,0,0,0,0,0,
816,593,644,Blue Christmas,Elvis Presley,rock-and-roll,1957.0,95,0.27,0.465,-16.661,0.145,0.58,130,0.9,0.0425,49,E,62,4,2020-12-18--2020-12-25,6007011,5698788,3QiAAp20rPC3dcAtKtMaqQ,1957-10-15 00:00:00,"['rock-and-roll', 'rockabilly']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
817,594,647,Santa Baby,Kylie Minogue,australian dance,2010.0,87,0.391,0.685,-7.183,0.142,0.443,203,0.744,0.0435,42,C#/Db,52,5,2020-12-18--2020-12-25,5687085,1324920,0cM5URUqqQTpJWonmdzF1J,2010-11-30 00:00:00,"['australian dance', 'australian pop', 'dance pop', 'electropop', 'eurodance', 'europop', 'new wave pop', 'pop']",0,0,0,0,0,0,1,0,0,0,0,0,0,Australia
818,595,648,It's Beginning to Look a Lot Like Christmas (with Mitchell Ayres & His Orchestra),"Perry Como, The Fontane Sisters",adult standards,1999.0,113,0.276,0.724,-12.25,0.116,0.718,156,0.76,0.0599,49,G,60,5,2020-12-18--2020-12-25,5422082,336373,2pXpURmn6zC5ZYDMms6fwa,1999-08-20 00:00:00,"['adult standards', 'brill building pop', 'easy listening', 'lounge', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,
819,596,650,Step Into Christmas,Elton John,glam rock,1973.0,140,0.925,0.526,-5.584,0.305,0.819,273,0.102,0.0363,43,D,66,4,2020-12-18--2020-12-25,5353591,7504724,6sBWmE23q6xQHlnEZ8jYPT,1973-10-05 00:00:00,"['glam rock', 'mellow gold', 'piano rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
820,597,651,Show Out (with Skepta & Pop Smoke),Kid Cudi,hip hop,2020.0,144,0.589,0.619,-6.531,0.378,0.158,175,0.43,0.124,76,C#/Db,54,3,2020-12-11--2020-12-18,5209372,5002317,5CFJRZRq6sdKKtRwNPWbYv,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
821,598,652,Investe Em Mim,Jonas Esticado,forro,2019.0,160,0.953,0.632,-1.283,0.125,0.798,187,0.317,0.0325,72,A,166,11,2020-10-23--2020-10-30,5191001,1293055,15k1TDabqSEmyXOwMq9RM7,2019-12-13 00:00:00,"['forro', 'sertanejo', 'sertanejo pop', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,
822,599,653,Lance Individual,Jorge & Mateus,sertanejo,2020.0,117,0.62,0.752,-5.536,0.075,0.962,165,0.309,0.0509,72,F,197,1,2020-12-25--2021-01-01,5152906,15019109,7GLWWrk1YlkPYqJK3ynIA0,2020-11-13 00:00:00,"['sertanejo', 'sertanejo universitario']",0,0,0,0,0,1,0,0,0,0,0,0,0,Brazil
823,600,654,Jingle Bell Rock - Daryl's Version,Daryl Hall & John Oates,album rock,1983.0,129,0.841,0.666,-3.592,0.113,0.84,127,0.613,0.0312,43,D,71,3,2020-12-18--2020-12-25,10522305,1549216,6pVW5LRWgeLaHudxauOTJU,1983-11-01 00:00:00,"['album rock', 'classic rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
824,601,656,Christmas Lights,Coldplay,permanent wave,2016.0,132,0.496,0.295,-9.478,0.858,0.224,269,0.207,0.0327,53,G,74,3,2020-12-18--2020-12-25,10455065,31161671,4QVdnpSO5JGMFOEl6ys4RQ,2016-12-16 00:00:00,"['permanent wave', 'pop']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
825,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
826,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
827,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
828,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
829,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
830,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,Australia
831,602,657,Have Yourself A Merry Little Christmas,Sam Smith,dance pop,2014.0,75,0.178,0.438,-9.402,0.316,0.344,171,0.957,0.0414,46,F,83,3,2020-12-18--2020-12-25,9548924,17097317,1Qi2wh8fFgDV7tl4Sj3f2K,2014-12-05 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
832,603,658,Santa's Coming for Us,Sia,australian dance,2018.0,93,0.814,0.547,-6.191,0.0475,0.724,206,0.0215,0.12,49,C#/Db,85,1,2020-12-18--2020-12-25,9474711,20528724,1N1ZpYUJc9fwrqk53FGgWv,2018-11-01 00:00:00,"['australian dance', 'australian pop', 'dance pop', 'pop']",0,0,0,0,0,0,1,0,0,0,0,0,0,Australia
833,604,659,My Only Wish (This Year),Britney Spears,dance pop,2000.0,147,0.843,0.669,-3.766,0.195,0.702,256,0.169,0.0268,43,C,86,2,2020-12-18--2020-12-25,9457199,9470311,0YWUHZPJVg4iujddsJDwhM,2000-11-14 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
834,605,660,"Baby, It's Cold Outside (feat. Meghan Trainor)",Brett Eldredge,contemporary country,2016.0,114,0.572,0.583,-4.776,0.266,0.684,174,0.738,0.0366,44,C#/Db,89,3,2020-12-18--2020-12-25,9270017,1298537,5Q2P43CJra0uRAogjHyJDK,2016-10-28 00:00:00,"['contemporary country', 'country', 'country road', 'modern country rock']",0,0,0,0,0,0,0,1,0,0,0,0,0,United States
835,606,661,Like It's Christmas,Jonas Brothers,boy band,2019.0,146,0.571,0.725,-6.007,0.0519,0.61,201,0.0183,0.102,47,C#/Db,92,2,2020-12-18--2020-12-25,9167304,5436999,1OjmlSFuzYflWjSMTCyTJv,2019-11-08 00:00:00,"['boy band', 'dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
836,607,662,Christmas Without You,Ava Max,dance pop,2020.0,118,0.596,0.654,-4.68,0.11,0.382,170,0.424,0.0458,45,C#/Db,102,1,2020-12-18--2020-12-25,8813922,3916979,1QLZKzC2pjP4ySf4ALrNhm,2020-10-15 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
837,608,663,You Make It Feel Like Christmas (feat. Blake Shelton),Gwen Stefani,dance pop,2017.0,93,0.87,0.635,-4.291,0.118,0.912,157,0.0156,0.04,44,D,104,1,2020-12-18--2020-12-25,8696354,4805333,2OQ6a4CfUeYskpTTgyawyJ,2017-10-06 00:00:00,"['dance pop', 'hip pop', 'pop', 'post-teen pop', 'urban contemporary']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
838,609,664,Gnat,Eminem,detroit hip hop,2020.0,141,0.869,0.835,-4.582,0.462,0.82,225,0.248,0.27,70,A#/Bb,107,1,2020-12-18--2020-12-25,8614955,46814751,6cS9PmLky2NhLOhpIsUlow,2020-12-18 00:00:00,"['detroit hip hop', 'hip hop', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
839,610,666,Santa Claus Is Coming to Town,Michael Bublé,adult standards,2012.0,122,0.389,0.594,-7.109,0.0313,0.396,172,0.785,0.0517,44,A#/Bb,117,1,2020-12-18--2020-12-25,8177832,4702232,1RMDXedcRno6rDBCbNHDJf,2012-11-09 00:00:00,"['adult standards', 'canadian pop', 'jazz pop', 'lounge']",1,0,0,0,0,0,0,0,0,0,0,0,0,
840,611,667,Baby It's Cold Outside (duet with Michael Bublé),Idina Menzel,hollywood,2014.0,113,0.476,0.553,-8.869,0.281,0.558,167,0.647,0.0649,47,C,119,1,2020-12-18--2020-12-25,8160534,353571,0Ie5uiv54KgCr7P4sYDTHl,2014-10-10 00:00:00,"['hollywood', 'show tunes']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
841,612,668,‘tis the damn season,Taylor Swift,pop,2020.0,146,0.434,0.575,-8.193,0.105,0.348,230,0.735,0.0312,66,F,22,2,2020-12-11--2020-12-18,8115520,42227614,7dW84mWkdWE5a6lFWxJCBG,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
842,613,669,I Saw Mommy Kissing Santa Claus,The Jackson 5,motown,1970.0,129,0.712,0.583,-8.222,0.817,0.614,182,0.263,0.0538,44,D#/Eb,123,1,2020-12-18--2020-12-25,8064361,1151360,15sxLiiChE5dCW3Y756oas,1970-10-15 00:00:00,"['motown', 'soul']",0,0,0,0,0,0,0,0,1,0,0,0,0,United States
843,614,670,Santa Baby (with Henri René & His Orchestra),"Eartha Kitt, Henri Rene & His Orchestra",adult standards,1905.0,84,0.139,0.7,-12.346,0.185,0.49,207,0.902,0.0607,41,G#/Ab,126,1,2020-12-18--2020-12-25,8022773,127251,1foCxQtxBweJtZmdxhEHVO,2002,"['adult standards', 'lounge', 'torch song', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,
844,615,671,Carol of the Bells,"Mykola Dmytrovych Leontovych, John Williams",soundtrack,1905.0,47,0.106,0.418,-22.507,0.179,0.8,86,0.994,0.0448,51,G#/Ab,127,1,2020-12-18--2020-12-25,7993078,1024868,4tHqQMWSqmL6YjXwsqthDI,1990,['soundtrack'],0,0,0,0,0,1,0,0,0,0,0,0,0,
845,616,672,gold rush,Taylor Swift,pop,2020.0,112,0.462,0.512,-10.491,0.121,0.353,186,0.83,0.0408,70,A,19,2,2020-12-11--2020-12-18,7901968,42227614,5BK0uqwY9DNfZ630STAEaq,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
846,617,674,The Christmas Song (Shawn Mendes & Camila Cabello),Shawn Mendes,canadian pop,2020.0,84,0.181,0.341,-12.073,0.137,0.212,197,0.888,0.0366,42,D,140,1,2020-12-18--2020-12-25,7536851,33893352,0fwxmtpxpMmEMphmJbCAEx,2020-12-07 00:00:00,"['canadian pop', 'dance pop', 'pop', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
847,618,675,"Baby, It's Cold Outside",Dean Martin,adult standards,1959.0,130,0.196,0.469,-16.093,0.0513,0.537,144,0.882,0.0571,44,C,144,1,2020-12-18--2020-12-25,7367482,1139096,4MrfQL4TYQXJBlZYpAHTuE,1959-01-01 00:00:00,"['adult standards', 'easy listening', 'lounge', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
848,619,676,"Santa Claus Is Comin' to Town - Live at C.W. Post College, Greenvale, NY - December 1975",Bruce Springsteen,classic rock,1905.0,140,0.668,0.357,-8.444,0.727,0.407,268,0.362,0.0479,44,C,145,1,2020-12-18--2020-12-25,7363913,4224071,6s2wpWPFPAgKg2LXxi1Oee,1981,"['classic rock', 'heartland rock', 'mellow gold', 'permanent wave', 'rock', 'singer-songwriter']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
849,620,677,One More Sleep,Leona Lewis,british soul,2013.0,113,0.813,0.638,-3.849,0.344,0.754,240,0.464,0.0362,42,B,147,1,2020-12-18--2020-12-25,7350024,2877234,78pn8k7RogKo2oxl0DyX6d,2013-12-02 00:00:00,"['british soul', 'dance pop', 'europop', 'pop', 'post-teen pop', 'talent show']",0,0,0,0,0,0,0,0,1,0,0,0,0,United Kingdom
850,621,679,Naughty List (with Dixie),Liam Payne,dance pop,2020.0,82,0.771,0.619,-2.204,0.114,0.704,155,0.0318,0.0601,51,A,150,1,2020-12-18--2020-12-25,7299201,8037861,2Y0ktCGrGoGcQFXsGztvhi,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
851,622,680,I'll Be Home,Meghan Trainor,dance pop,2015.0,85,0.37,0.542,-7.779,0.108,0.289,220,0.318,0.0257,45,D,152,1,2020-12-18--2020-12-25,7281773,10606572,0lTurWECr2XL607eJAj1A3,2015-01-09 00:00:00,"['dance pop', 'hip pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
852,623,681,Rudolph The Red-Nosed Reindeer,Dean Martin,adult standards,1959.0,136,0.201,0.478,-16.768,0.0854,0.857,136,0.919,0.0332,41,G,156,1,2020-12-18--2020-12-25,7227612,1139096,2L9QLAhrvtP4EYg1lY0Tnw,1959-01-01 00:00:00,"['adult standards', 'easy listening', 'lounge', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
853,624,682,Mistletoe And Holly - Remastered 1999,Frank Sinatra,adult standards,,110,0.103,0.607,-14.405,0.076,0.341,137,0.804,0.0404,38,A,157,1,2020-12-18--2020-12-25,7225080,4953667,7faDzZnZYqTyYThx2sbHVQ,1957-09,"['adult standards', 'easy listening', 'lounge']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
854,625,683,Jingle Bells - Remastered 1999,Frank Sinatra,adult standards,,175,0.339,0.512,-13.119,0.0977,0.951,121,0.727,0.0498,36,G#/Ab,159,1,2020-12-18--2020-12-25,7182262,4953667,4HEOgBHRCExyYVeTyrXsnL,1957-09,"['adult standards', 'easy listening', 'lounge']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
855,626,684,Oh Santa! (feat. Ariana Grande & Jennifer Hudson),Mariah Carey,dance pop,2020.0,78,0.938,0.648,-3.298,0.0564,0.849,201,0.0339,0.115,47,C#/Db,160,1,2020-12-18--2020-12-25,7170169,6931357,1Ri9P0ZPrqr6h0REDRdJBd,2020-12-04 00:00:00,"['dance pop', 'pop', 'r&b', 'urban contemporary']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
856,627,685,Do You Hear What I Hear? - Remastered 2006,Bing Crosby,adult standards,2006.0,102,0.246,0.566,-15.499,0.195,0.412,166,0.813,0.0276,44,A#/Bb,161,1,2020-12-18--2020-12-25,7149158,359973,5aDoUmxBsbdpS16alksb5Z,2006-01-01 00:00:00,"['adult standards', 'easy listening', 'lounge', 'swing', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
857,628,686,Hallelujah,Pentatonix,a cappella,2017.0,90,0.378,0.364,-7.381,0.339,0.366,269,0.47,0.0331,60,G,167,1,2020-12-18--2020-12-25,6985392,3083825,0HZk0QsXPhMNAWNDR3rYE8,2017-12-06 00:00:00,['a cappella'],0,0,0,0,0,1,0,0,0,0,0,0,0,United States
858,629,687,This Christmas,Donny Hathaway,chicago soul,1990.0,93,0.645,0.634,-9.2,0.246,0.677,232,0.292,0.0376,42,F,175,1,2020-12-18--2020-12-25,6809438,424935,38xhBO2AKrJnjdjVnhJES6,1990-04-03 00:00:00,"['chicago soul', 'classic soul', 'funk', 'motown', 'neo soul', 'quiet storm', 'soul', 'southern soul']",0,0,0,0,0,0,0,0,1,0,0,0,0,United States
859,630,688,Winter Wonderland,Tony Bennett,adult standards,2014.0,126,0.497,0.604,-6.676,0.102,0.72,150,0.727,0.0319,29,C#/Db,180,1,2020-12-18--2020-12-25,6680928,659472,6kkJlaBYdyFcwCg67hW40t,2014-12-09 00:00:00,"['adult standards', 'easy listening', 'lounge', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
860,630,688,Winter Wonderland,Tony Bennett,adult standards,2014.0,126,0.497,0.604,-6.676,0.102,0.72,150,0.727,0.0319,29,C#/Db,180,1,2020-12-18--2020-12-25,6680928,659472,6kkJlaBYdyFcwCg67hW40t,2014-12-09 00:00:00,"['adult standards', 'easy listening', 'lounge', 'vocal jazz']",1,0,0,0,0,0,0,0,0,0,0,0,0,
861,631,689,Christmas Tree Farm,Taylor Swift,pop,2019.0,134,0.68,0.598,-4.505,0.324,0.437,229,0.06,0.0331,52,G,181,1,2020-12-18--2020-12-25,6657404,42227614,2mvabkN1i2gLnGAPUVdwek,2019-12-06 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
862,632,690,Cozy Little Christmas,Katy Perry,dance pop,2018.0,137,0.608,0.774,-6.264,0.0895,0.56,183,0.128,0.128,41,G,182,1,2020-12-18--2020-12-25,6652130,18936929,02FaKXXL7KUtRc7K0k54tL,2018-11-15 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
863,633,691,"Merry Christmas, Happy Holidays",*NSYNC,boy band,1998.0,105,0.939,0.643,-3.967,0.881,0.756,256,0.104,0.0463,41,F,184,1,2020-12-18--2020-12-25,6635128,1564750,4v9WbaxW8HdjqfUiWYWsII,1998-10-30 00:00:00,"['boy band', 'dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
864,634,692,tolerate it,Taylor Swift,pop,2020.0,75,0.361,0.316,-10.381,0.0797,0.221,246,0.878,0.0488,67,A,24,2,2020-12-11--2020-12-18,6635109,42227614,0PurA4JVJ8YQgSVopY8fn6,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
865,635,693,Please Come Home for Christmas - 2013 Remaster,Eagles,album rock,1905.0,183,0.289,0.612,-11.568,0.0561,0.466,178,0.599,0.0421,44,A,192,1,2020-12-18--2020-12-25,6400108,6896776,3QIoEi8Enr9uHffwInGIsC,1994,"['album rock', 'classic rock', 'country rock', 'folk rock', 'heartland rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United States
866,635,693,Please Come Home for Christmas - 2013 Remaster,Eagles,album rock,1905.0,183,0.289,0.612,-11.568,0.0561,0.466,178,0.599,0.0421,44,A,192,1,2020-12-18--2020-12-25,6400108,6896776,3QIoEi8Enr9uHffwInGIsC,1994,"['album rock', 'classic rock', 'country rock', 'folk rock', 'heartland rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,
867,636,694,My Kind Of Present,Meghan Trainor,dance pop,2020.0,180,0.444,0.485,-6.232,0.0969,0.777,162,0.373,0.195,41,C#/Db,197,1,2020-12-18--2020-12-25,6278993,10606572,2rkb8ijsPapKDMEh0cSe8I,2020-10-30 00:00:00,"['dance pop', 'hip pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
868,637,695,happiness,Taylor Swift,pop,2020.0,122,0.334,0.559,-10.733,0.114,0.211,316,0.87,0.0376,65,B,28,1,2020-12-11--2020-12-18,16213589,42227614,73YUReisjb3A9ActdLLjJQ,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
869,638,696,ivy,Taylor Swift,pop,2020.0,89,0.545,0.515,-9.277,0.0921,0.535,261,0.855,0.0353,66,D,34,1,2020-12-11--2020-12-18,14519547,42227614,19CSr8rwW05VJL2F91KFNK,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
870,639,697,dorothea,Taylor Swift,pop,2020.0,120,0.488,0.605,-8.322,0.129,0.354,226,0.696,0.0264,64,E,38,1,2020-12-11--2020-12-18,14392788,42227614,670fUmXf4KQekzbEgaXyPA,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
871,640,698,coney island (feat. The National),Taylor Swift,pop,2020.0,108,0.537,0.537,-11.266,0.142,0.292,276,0.819,0.0617,64,G#/Ab,39,1,2020-12-11--2020-12-18,14385703,42227614,3k7ne7VmH43ZPWxPdvPUgR,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
872,641,699,evermore (feat. Bon Iver),Taylor Swift,pop,2020.0,125,0.27,0.39,-10.673,0.111,0.32,305,0.937,0.0308,66,C#/Db,43,1,2020-12-11--2020-12-18,13810722,42227614,3O5osWf1rSoKMwe6E9ZaXP,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
873,642,700,long story short,Taylor Swift,pop,2020.0,158,0.73,0.546,-7.704,0.0972,0.573,216,0.66,0.0417,66,C,45,1,2020-12-11--2020-12-18,13583538,42227614,2o2sgVJIgFXk8GQjWTgI6U,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
874,643,701,cowboy like me,Taylor Swift,pop,2020.0,128,0.517,0.604,-9.014,0.123,0.511,276,0.768,0.0347,64,C,53,1,2020-12-11--2020-12-18,12782098,42227614,1XjHRolIXL2M1EEOUsGGR4,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
875,644,702,marjorie,Taylor Swift,pop,2020.0,96,0.561,0.535,-11.609,0.115,0.287,258,0.876,0.0484,64,F,57,1,2020-12-11--2020-12-18,12234761,42227614,12ntTeqEeTg7GAVpe8Mhpl,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
876,645,703,closure,Taylor Swift,pop,2020.0,152,0.704,0.689,-10.813,0.134,0.92,181,0.835,0.245,62,A,70,1,2020-12-11--2020-12-18,11245393,42227614,35rdVq36LMHQX0Suw9a6tK,2020-12-11 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
877,646,704,She Knows This,Kid Cudi,hip hop,2020.0,166,0.724,0.39,-7.607,0.393,0.312,217,0.162,0.0889,64,F#/Gb,74,1,2020-12-11--2020-12-18,10561183,5002317,1xzUQMiCoY5pdego0pHMeV,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
878,647,705,Another Day,Kid Cudi,hip hop,2020.0,173,0.758,0.646,-7.75,0.335,0.0642,200,0.556,0.0708,63,E,97,1,2020-12-11--2020-12-18,8901697,5002317,6myUpr3GDR80Dg3zqNTmmG,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
879,648,706,"Solo Dolo, Pt. III",Kid Cudi,hip hop,2020.0,152,0.727,0.589,-6.907,0.164,0.52,243,0.239,0.0866,61,A#/Bb,126,1,2020-12-11--2020-12-18,7655623,5002317,27oVCAziETRbNuo5A8LNpg,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
880,649,707,Dive,Kid Cudi,hip hop,2020.0,123,0.621,0.64,-8.269,0.36,0.332,149,0.67,0.0679,60,A,129,1,2020-12-11--2020-12-18,7524738,5002317,7Hc3YL8oDiAzbiAW32KXrw,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
881,650,708,Heaven On Earth,Kid Cudi,hip hop,2020.0,130,0.61,0.786,-6.736,0.0765,0.228,202,0.379,0.0558,59,C,139,1,2020-12-11--2020-12-18,7117347,5002317,2koUj1Fn5TKFEkChSmBPIb,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
882,651,709,Sad People,Kid Cudi,hip hop,2020.0,158,0.647,0.636,-6.971,0.113,0.416,177,0.247,0.0381,62,F,147,1,2020-12-11--2020-12-18,6865689,5002317,4nuAslShoN77tq12fzwjUq,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
883,652,710,Damaged,Kid Cudi,hip hop,2020.0,142,0.581,0.625,-7.1,0.254,0.267,151,0.553,0.0316,57,G#/Ab,152,1,2020-12-11--2020-12-18,6763705,5002317,2n7Ao4nyESBa5ti8gcAbBt,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
884,653,711,YO VISTO ASÃ,Bad Bunny,latin,2020.0,123,0.881,0.688,-4.889,0.0804,0.677,192,0.0947,0.0474,73,G,17,3,2020-11-27--2020-12-04,6388079,36177712,5fROvzNghPid8mbKNDYvpJ,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
885,654,712,Beautiful Trip,Kid Cudi,hip hop,2020.0,134,0.513,0.331,-15.392,0.882,0.42,38,0.972,0.632,54,B,183,1,2020-12-11--2020-12-18,6108393,5002317,4IIuCotvqijraSdnVLaFnM,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
886,655,713,The Void,Kid Cudi,hip hop,2020.0,142,0.459,0.464,-8.736,0.117,0.0786,326,0.365,0.0314,61,G,185,1,2020-12-11--2020-12-18,6068816,5002317,2yg7MXp8nSPaf61HVkhEr3,2020-12-11 00:00:00,"['hip hop', 'ohio hip hop', 'pop rap', 'rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
887,656,714,cardigan,Taylor Swift,pop,2020.0,130,0.581,0.613,-8.588,0.25,0.551,240,0.537,0.0424,79,C,1,12,2020-07-24--2020-07-31,5845457,42227614,4R2kfaDFhslZEMJqAFNpdd,2020-07-24 00:00:00,"['pop', 'post-teen pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
888,657,715,Real Shit (with benny blanco),Juice WRLD,chicago rap,2020.0,76,0.703,0.703,-4.672,0.12,0.697,184,0.605,0.133,70,C#/Db,74,1,2020-12-04--2020-12-11,9325928,19102888,3uVPLtkmDu8pDkYEAVqbgS,2020-12-02 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
889,658,716,Teach Me How To Love,Shawn Mendes,canadian pop,2020.0,99,0.885,0.592,-4.944,0.0843,0.731,203,0.0505,0.0807,68,A,104,1,2020-12-04--2020-12-11,7932101,33893352,5LZtB6nxvjIhUoElp3Zqk0,2020-12-04 00:00:00,"['canadian pop', 'dance pop', 'pop', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,Canada
890,659,717,Blinding Lights (with ROSALÃA) - Remix,The Weeknd,canadian contemporary r&b,2020.0,171,0.694,0.49,-5.793,0.0946,0.249,217,0.0133,0.0618,64,F,138,1,2020-12-04--2020-12-11,6653913,35340069,7MXgrcOQAJ5VwSNUL0lDd3,2020-12-04 00:00:00,"['canadian contemporary r&b', 'canadian pop', 'pop']",0,0,1,0,0,0,0,0,0,0,0,0,0,Canada
891,660,718,"WHATS POPPIN (feat. DaBaby, Tory Lanez & Lil Wayne) - Remix","Tory Lanez, Jack Harlow",canadian hip hop,2020.0,145,0.723,0.904,-5.224,0.185,0.835,228,0.0631,0.26,80,B,15,24,2020-07-17--2020-07-24,6567755,3828418,2MbdDtCv5LUVjYy9RuGTgC,2020-06-24 00:00:00,"['canadian hip hop', 'canadian trap', 'melodic rap', 'pop rap', 'r&b', 'rap', 'toronto rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
892,661,719,TE DESEO LO MEJOR,Bad Bunny,latin,2020.0,126,0.597,0.763,-5.054,0.111,0.194,140,0.158,0.0416,70,C#/Db,29,2,2020-11-27--2020-12-04,6204228,36177712,23XjN1s3DZC8Q9ZwuorYY4,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
893,662,720,Errbody,Lil Baby,atl hip hop,2020.0,140,0.606,0.887,-6.572,0.151,0.272,211,0.000407,0.324,68,D,167,1,2020-12-04--2020-12-11,5929516,7816213,6eVxH9Kyanzrw636zJRPcw,2020-12-03 00:00:00,"['atl hip hop', 'atl trap', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
894,663,721,Angels Like You,Miley Cyrus,dance pop,2020.0,122,0.642,0.672,-4.035,0.1,0.494,197,0.0981,0.0313,77,F,86,2,2020-11-27--2020-12-04,5884221,15778531,1daDRI9ahBonbWD8YcxOIB,2020-11-27 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
895,663,721,Angels Like You,Miley Cyrus,dance pop,2020.0,122,0.642,0.672,-4.035,0.1,0.494,197,0.0981,0.0313,77,F,86,2,2020-11-27--2020-12-04,5884221,15778531,1daDRI9ahBonbWD8YcxOIB,2020-11-27 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
896,664,722,Blue & Grey,BTS,k-pop,2020.0,122,0.605,0.547,-6.755,0.125,0.364,255,0.42,0.0415,77,G#/Ab,18,3,2020-11-20--2020-11-27,5698275,37151476,0n2moJpAEWHwaPYYjkzMDl,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
897,665,723,Mad at Disney,salem ilese,alt z,2020.0,114,0.621,0.738,-7.313,0.692,0.715,137,0.424,0.0486,76,C,46,14,2020-09-18--2020-09-25,5436450,133998,7aGyRfJWtLqgJaZoG9lJhE,2020-07-24 00:00:00,"['alt z', 'modern indie pop', 'social media pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,
898,666,724,Safaera,"Bad Bunny, Jowell & Randy, Ñengo Flow",latin,2020.0,96,0.829,0.607,-4.074,0.107,0.685,296,0.0103,0.379,79,D,9,39,2020-03-13--2020-03-20,5390363,36177712,2DEZmgHKAvm41k4J3R2E9Y,2020-02-29 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
899,667,725,LA DROGA,Bad Bunny,latin,2020.0,90,0.727,0.643,-5.506,0.123,0.295,163,0.0439,0.0389,70,C#/Db,43,2,2020-11-27--2020-12-04,5375449,36177712,67ACYA3UI6QMNtHX6b34wX,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
900,668,726,GO (feat. Juice WRLD),The Kid LAROI,australian hip hop,2020.0,74,0.74,0.487,-4.973,0.612,0.522,182,0.157,0.0944,78,F#/Gb,60,17,2020-06-12--2020-06-19,5370330,2238190,2rPHUAeUPbNgTmK18FPTiZ,2020-07-24 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
901,669,728,"Mood (Remix) feat. Justin Bieber, J Balvin & iann dior",24kGoldn,cali rap,2020.0,91,0.745,0.721,-3.508,0.372,0.699,193,0.151,0.0366,77,G,35,5,2020-11-06--2020-11-13,5314734,1276406,6FuGJB290AQMAHTfjOYVaK,2020-11-06 00:00:00,['cali rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
902,670,729,HOY COBRÉ,Bad Bunny,latin,2020.0,145,0.725,0.86,-6.7,0.0994,0.375,163,0.0464,0.249,70,B,41,1,2020-11-27--2020-12-04,12914431,36177712,0tjZv2hChdHZCW1zFXpy1J,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
903,671,730,MALDITA POBREZA,Bad Bunny,latin,2020.0,133,0.861,0.762,-4.075,0.0956,0.588,214,0.139,0.0652,67,E,44,1,2020-11-27--2020-12-04,12660806,36177712,0Lsis3LB0XAK6XlTHXaJk2,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
904,672,731,EL MUNDO ES MÃO,Bad Bunny,latin,2020.0,77,0.522,0.716,-6.834,0.113,0.224,166,0.166,0.0582,67,F,48,1,2020-11-27--2020-12-04,12507010,36177712,36DHxTW2xdr9GG15T9oK9L,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
905,673,732,ANTES QUE SE ACABE,Bad Bunny,latin,2020.0,140,0.549,0.693,-6.098,0.324,0.473,222,0.505,0.0577,76,D,53,1,2020-11-27--2020-12-04,11298839,36177712,7kjEqI6eZ7YlFrGhxixnlN,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
906,674,733,SORRY PAPI,"Bad Bunny, ABRA",latin,2020.0,192,0.561,0.612,-6.054,0.145,0.393,164,0.0601,0.0851,70,C#/Db,59,1,2020-11-27--2020-12-04,11066606,36177712,5jZ32WOU7sqzDYbzINwMUk,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
907,675,734,120,Bad Bunny,latin,2020.0,172,0.656,0.636,-5.542,0.287,0.439,152,0.451,0.0676,72,D,63,1,2020-11-27--2020-12-04,10957181,36177712,3KJ3opyV29269SXkPrc19l,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
908,676,735,TRELLAS,Bad Bunny,latin,2020.0,91,0.412,0.43,-5.372,0.324,0.0508,158,0.2,0.0281,66,D,66,1,2020-11-27--2020-12-04,10733416,36177712,09WAnxdBuebQopKhJT3oZS,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,United States
909,677,736,Wonderful Christmastime [Edited Version] - Remastered 2011 / Edited Version,Paul McCartney,album rock,1980.0,95,0.511,0.774,-8.914,0.0672,0.771,228,0.322,0.0319,51,B,83,2,2020-11-27--2020-12-04,9624871,3609658,1SV1fxF65n9NhRHp3KlBuu,1980-05-16 00:00:00,"['album rock', 'art rock', 'beatlesque', 'classic rock', 'mellow gold', 'rock', 'soft rock']",0,1,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
910,678,737,Fly To My Room,BTS,k-pop,2020.0,115,0.526,0.764,-7.355,0.0718,0.588,223,0.0484,0.212,76,B,16,2,2020-11-20--2020-11-27,8413330,37151476,3QH8rQGNFX8VLbCgZ7uPTS,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
911,679,738,Telepathy,BTS,k-pop,2020.0,105,0.669,0.787,-4.333,0.123,0.57,203,0.00782,0.0428,77,F,24,2,2020-11-20--2020-11-27,7703744,37151476,2FVpOsjT1iquZ3SpCjZ9Ne,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
912,680,739,Dis-ease,BTS,k-pop,2020.0,101,0.845,0.731,-5.352,0.0782,0.484,240,0.0132,0.132,75,G#/Ab,26,2,2020-11-20--2020-11-27,7165808,37151476,54DmTIv86D3sYdiawjULQ0,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
913,681,740,Stay,BTS,k-pop,2020.0,126,0.693,0.582,-5.048,0.13,0.341,205,0.114,0.0465,76,F#/Gb,27,2,2020-11-20--2020-11-27,7010227,37151476,3ndCsZfq8OVwwkz9mmZvUz,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
914,682,741,Heart Of Glass (Live from the iHeart Festival),Miley Cyrus,dance pop,2020.0,115,0.908,0.58,-5.303,0.087,0.427,214,0.000335,0.0341,71,E,151,5,2020-10-02--2020-10-09,6006877,15778531,5i7ThJfYLAzp2DyZuFpF6j,2020-09-29 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
915,682,741,Heart Of Glass (Live from the iHeart Festival),Miley Cyrus,dance pop,2020.0,115,0.908,0.58,-5.303,0.087,0.427,214,0.000335,0.0341,71,E,151,5,2020-10-02--2020-10-09,6006877,15778531,5i7ThJfYLAzp2DyZuFpF6j,2020-09-29 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
916,683,742,CANTARES DE NAVIDAD,Trio Vegabajeño,latin,2020.0,119,0.523,0.764,-7.371,0.352,0.962,200,0.777,0.0406,56,D,171,1,2020-11-27--2020-12-04,5842320,36177712,2Iv6YBslkxslMJQsxshZh5,2020-11-27 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
917,684,743,Plastic Hearts,Miley Cyrus,dance pop,2020.0,176,0.756,0.551,-4.948,0.0765,0.618,206,0.0511,0.0652,74,D,172,1,2020-11-27--2020-12-04,5816739,15778531,6qCsKKS7Ol63SJW3LOIX5R,2020-11-27 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
918,684,743,Plastic Hearts,Miley Cyrus,dance pop,2020.0,176,0.756,0.551,-4.948,0.0765,0.618,206,0.0511,0.0652,74,D,172,1,2020-11-27--2020-12-04,5816739,15778531,6qCsKKS7Ol63SJW3LOIX5R,2020-11-27 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
919,685,744,CÓMO SE SIENTE - Remix,"Jhay Cortez, Bad Bunny",latin,2020.0,93,0.606,0.807,-8.871,0.119,0.304,228,0.0946,0.088,81,D#/Eb,63,24,2020-05-08--2020-05-15,5463964,2435159,2tFwfmceQa1Y6nRPhYbEtC,2020-05-09 00:00:00,"['latin', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
920,686,745,Skit,BTS,k-pop,2020.0,115,0.321,0.703,-13.135,0.908,0.544,180,0.864,0.884,60,E,78,1,2020-11-20--2020-11-27,8392247,37151476,4GVwjLRT7oSsKby7Vy8EHr,2020-11-20 00:00:00,"['k-pop', 'k-pop boy group']",1,0,0,0,0,0,0,0,0,0,0,0,0,
921,687,746,Baby (with J Balvin),Sfera Ebbasta,italian hip hop,2020.0,100,0.882,0.755,-1.957,0.103,0.606,194,0.125,0.0532,69,A#/Bb,105,1,2020-11-20--2020-11-27,7276896,4430628,3eblNP3Zd5b5J3JaOckl8Y,2020-12-18 00:00:00,"['italian hip hop', 'italian pop', 'trap italiana']",0,0,1,0,0,0,0,0,0,0,0,0,0,Italy
922,688,747,Tick Tock (feat. 24kGoldn),"Clean Bandit, Mabel",dance pop,2020.0,101,0.705,0.779,-3.895,0.124,0.946,179,0.369,0.0344,78,C,82,11,2020-10-23--2020-10-30,6241923,4431309,27u7t9d7ZQoyjsCROHuZJ3,2020-08-21 00:00:00,"['dance pop', 'edm', 'pop', 'pop dance', 'post-teen pop', 'tropical house', 'uk dance', 'uk funky']",1,0,0,0,0,0,1,0,0,0,0,0,0,
923,689,748,Dime Cómo Quieres,"Christian Nodal, Ãngela Aguilar",mariachi,2020.0,125,0.667,0.839,-3.961,0.244,0.878,172,0.322,0.031,75,B,139,1,2020-11-20--2020-11-27,6152821,8123757,4jcxBTrNvyqMJdMDyyjdYV,2020-11-13 00:00:00,"['mariachi', 'nuevo regional mexicano', 'ranchera', 'regional mexican']",0,0,0,0,0,1,0,0,0,0,0,0,0,
924,690,749,Tik Tok (feat. Marracash & Guè Pequeno),Sfera Ebbasta,italian hip hop,2020.0,120,0.673,0.723,-7.636,0.323,0.302,231,0.0985,0.137,59,A,162,1,2020-11-20--2020-11-27,5504912,4430628,3tkYK45AZC0PqJ7MSe6IyJ,2020-12-18 00:00:00,"['italian hip hop', 'italian pop', 'trap italiana']",0,0,1,0,0,0,0,0,0,0,0,0,0,Italy
925,691,750,Jerusalema (feat. Nomcebo Zikode),Master KG,south african house,2020.0,124,0.483,0.88,-7.012,0.0607,0.827,343,0.0185,0.0505,78,C#/Db,88,12,2020-10-09--2020-10-16,5362508,247480,2MlOUXmcofMackX3bxfSwi,2020-01-24 00:00:00,['south african house'],0,0,0,0,0,0,1,0,0,0,0,0,0,
926,692,752,Abracadabra (feat. Future),Sfera Ebbasta,italian hip hop,2020.0,132,0.681,0.846,-7.091,0.112,0.809,193,0.0461,0.174,55,F,174,1,2020-11-20--2020-11-27,5263469,4430628,2GuLouaDNgLGxdJoe0vYf6,2020-12-18 00:00:00,"['italian hip hop', 'italian pop', 'trap italiana']",0,0,1,0,0,0,0,0,0,0,0,0,0,Italy
927,693,753,Djadja (feat. Maluma) - Remix,Aya Nakamura,basshall,2020.0,98,0.682,0.791,-7.328,0.0926,0.672,167,0.175,0.158,72,F,36,22,2020-08-07--2020-08-14,5203423,2953525,6AzKhCHOms83jvNVLsz0Bt,2020-06-12 00:00:00,"['basshall', 'francoton']",0,0,1,0,0,0,0,0,0,1,0,0,0,France
928,694,754,ALWAYS DO,The Kid LAROI,australian hip hop,2020.0,168,0.426,0.762,-6.865,0.0858,0.582,152,0.0442,0.113,76,G#/Ab,140,3,2020-11-06--2020-11-13,5196635,2238190,3QCU8BT0zDS9LPVfEhRFEE,2020-11-06 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
929,695,755,Smile (with The Weeknd),Juice WRLD,chicago rap,2020.0,159,0.685,0.694,-6.535,0.124,0.306,197,0.224,0.133,75,F#/Gb,7,16,2020-08-07--2020-08-14,5164187,19102888,6wQlQrTY5mVS8EGaFZVwVF,2020-07-10 00:00:00,"['chicago rap', 'melodic rap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
930,696,756,Pretty Savage,BLACKPINK,k-pop,2020.0,152,0.556,0.701,-7.42,0.106,0.333,202,0.00886,0.0414,75,A,22,8,2020-10-02--2020-10-09,5039047,23848461,1XnpzbOGptRwfJhZgLbmSr,2020-10-02 00:00:00,"['k-pop', 'k-pop girl group']",1,0,0,0,0,0,0,0,0,0,0,0,0,South Korea
931,697,757,Savage Love (Laxed – Siren Beat) [BTS Remix],"Jawsh 685, Jason Derulo",nz pop,2020.0,150,0.598,0.758,-5.695,0.295,0.658,185,0.16,0.0868,76,C,41,7,2020-10-02--2020-10-09,4995203,100635,4TgxFMOn5yoESW6zCidCXL,2020-10-02 00:00:00,['nz pop'],1,0,0,0,0,0,0,0,0,0,0,0,0,
932,698,758,Mirrors,Justin Timberlake,dance pop,2013.0,77,0.512,0.574,-6.664,0.0946,0.512,485,0.234,0.0503,78,F,188,1,2020-11-20--2020-11-27,4988571,11034144,4rHZZAmHpZrA3iH5zx8frV,2013-03-15 00:00:00,"['dance pop', 'pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
933,699,759,Hollywood (feat. Diplo),Sfera Ebbasta,italian hip hop,2020.0,138,0.708,0.848,-6.336,0.0948,0.926,192,0.153,0.0366,63,D,192,1,2020-11-20--2020-11-27,4920218,4430628,0WXU7I74NEN1DMLIT406Wx,2020-12-18 00:00:00,"['italian hip hop', 'italian pop', 'trap italiana']",0,0,1,0,0,0,0,0,0,0,0,0,0,Italy
934,700,760,Runnin,"21 Savage, Metro Boomin",atl hip hop,2020.0,143,0.626,0.819,-4.574,0.167,0.415,196,0.00748,0.202,78,A#/Bb,24,8,2020-10-02--2020-10-09,4914682,9949044,5SWnsxjhdcEDc7LJjq9UHk,2020-10-02 00:00:00,"['atl hip hop', 'hip hop', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
935,701,761,Are You Bored Yet? (feat. Clairo),Wallows,indie pop,2019.0,120,0.683,0.682,-6.444,0.273,0.64,178,0.156,0.0287,81,G#/Ab,105,23,2020-08-07--2020-08-14,4911995,1963296,57RA3JGafJm5zRtKJiKPIm,2019-03-22 00:00:00,"['indie pop', 'modern rock', 'pop', 'rock']",1,0,0,0,1,0,0,0,0,0,0,0,0,United States
936,702,762,"10,000 Hours (with Justin Bieber)",Dan + Shay,contemporary country,2019.0,90,0.63,0.654,-4.644,0.111,0.43,168,0.153,0.0259,83,A#/Bb,44,44,2020-01-03--2020-01-10,4911749,2334615,2wrJq5XKLnmhRXHIAf9xBa,2019-10-04 00:00:00,"['contemporary country', 'country', 'pop']",0,0,0,0,0,0,0,1,0,0,0,0,0,United States
937,703,763,You Got It,Vedo,pop r&b,2020.0,122,0.433,0.762,-8.937,0.118,0.394,204,0.143,0.187,79,F,87,11,2020-09-25--2020-10-02,4907925,260236,4lsHZ92XCFOQfzJFBTluk8,2020-03-27 00:00:00,"['pop r&b', 'r&b']",1,0,1,0,0,0,0,0,0,0,0,0,0,
938,704,764,Quiéreme Mientras Se Pueda,Manuel Turizo,colombian pop,2020.0,144,0.782,0.793,-3.945,0.124,0.81,192,0.447,0.0582,74,E,129,14,2020-10-16--2020-10-23,4899440,7909963,34LI7rwi9H8w2S5KTHnv1M,2020-05-01 00:00:00,"['colombian pop', 'latin', 'reggaeton', 'reggaeton colombiano', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,Colombia
939,705,765,Party Girl,StaySolidRocky,melodic rap,2020.0,130,0.431,0.728,-9.966,0.0996,0.629,148,0.749,0.0622,77,F#/Gb,9,28,2020-06-12--2020-06-19,4878286,150587,5RqR4ZCCKJDcBLIn4sih9l,2020-04-21 00:00:00,['melodic rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,
940,706,766,Drankin N Smokin,"Future, Lil Uzi Vert",atl hip hop,2020.0,152,0.658,0.752,-6.297,0.0927,0.387,214,0.0421,0.342,78,C,95,1,2020-11-13--2020-11-20,7292247,10491105,0k7wmahjkn389wAZdz19Cv,2020-11-13 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
941,707,767,Be Like That - feat. Swae Lee & Khalid,Kane Brown,contemporary country,2020.0,87,0.626,0.727,-8.415,0.126,0.322,192,0.0469,0.0726,79,G,86,19,2020-09-11--2020-09-18,5929062,3509653,5f1joOtoMeyppIcJGZQvqJ,2020-07-10 00:00:00,"['contemporary country', 'country road']",0,0,0,0,0,0,0,1,0,0,0,0,0,United States
942,708,768,MORE,"K/DA, Madison Beer, (G)I-DLE, Lexie Liu, Jaira Burns, Seraphine, League of Legends",k-pop girl group,2020.0,142,0.787,0.66,-4.592,0.323,0.199,218,0.00257,0.032,73,C#/Db,74,3,2020-10-30--2020-11-06,5602168,1245965,6juLaduD4STCUDWT0AYun4,2020-10-28 00:00:00,['k-pop girl group'],1,0,0,0,0,0,0,0,0,0,0,0,0,
943,709,769,Enchule,Rauw Alejandro,puerto rican pop,2020.0,90,0.666,0.763,-3.316,0.301,0.587,186,0.153,0.194,70,G,140,5,2020-10-30--2020-11-06,5561227,6096559,3ThrfRAmijYU098H9q9tAs,2020-09-18 00:00:00,"['puerto rican pop', 'trap latino']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
944,710,770,Stripes Like Burberry,"Future, Lil Uzi Vert",atl hip hop,2020.0,144,0.574,0.758,-7.833,0.144,0.706,275,0.216,0.217,56,A,153,1,2020-11-13--2020-11-20,5445204,10491105,6lt8iodSkYWEV0ifKCSlfg,2020-11-13 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
945,711,771,Papi Chulo,"Octavian, Skepta",afroswing,2020.0,128,0.563,0.866,-6.964,0.0889,0.307,162,0.185,0.108,73,B,117,4,2020-11-06--2020-11-13,5361669,213344,6Juv5N0dNU1imms9c9u1dA,2020-03-13 00:00:00,"['afroswing', 'london rap', 'uk alternative hip hop', 'uk hip hop']",0,0,1,0,0,0,1,0,0,0,0,0,0,
946,712,772,off the table (with The Weeknd),Ariana Grande,dance pop,2020.0,88,0.522,0.411,-7.295,0.398,0.382,240,0.519,0.0981,67,C,20,3,2020-10-30--2020-11-06,5308945,67208170,7E1jVNoWuemqUryI4FxsVD,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
947,713,773,Spicy (feat. Post Malone),Ty Dolla $ign,hip hop,2020.0,100,0.51,0.782,-5.724,0.115,0.118,144,0.143,0.0419,80,E,52,4,2020-10-23--2020-10-30,5303146,3866304,5IUtvfNvOyVYZUa6AJFrnP,2020-10-23 00:00:00,"['hip hop', 'pop', 'pop rap', 'r&b', 'southern hip hop', 'trap', 'trap soul']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
948,714,774,Sweet Melody,Little Mix,dance pop,2020.0,120,0.824,0.448,-4.249,0.113,0.419,214,0.0739,0.057,73,F,124,3,2020-11-06--2020-11-13,5201322,9398941,76Tuo484SLohJakHLnGI3B,2020-11-06 00:00:00,"['dance pop', 'girl group', 'pop', 'post-teen pop', 'talent show', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
949,715,775,Blueberry Eyes (feat. SUGA of BTS),MAX,dance pop,2020.0,150,0.611,0.746,-7.034,0.133,0.411,173,0.454,0.101,72,C,144,4,2020-10-23--2020-10-30,5158896,689627,5dn6QANKbf76pANGjMBida,2020-09-15 00:00:00,"['dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,Japan
950,715,775,Blueberry Eyes (feat. SUGA of BTS),MAX,dance pop,2020.0,150,0.611,0.746,-7.034,0.133,0.411,173,0.454,0.101,72,C,144,4,2020-10-23--2020-10-30,5158896,689627,5dn6QANKbf76pANGjMBida,2020-09-15 00:00:00,"['dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,South Korea
951,715,775,Blueberry Eyes (feat. SUGA of BTS),MAX,dance pop,2020.0,150,0.611,0.746,-7.034,0.133,0.411,173,0.454,0.101,72,C,144,4,2020-10-23--2020-10-30,5158896,689627,5dn6QANKbf76pANGjMBida,2020-09-15 00:00:00,"['dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
952,715,775,Blueberry Eyes (feat. SUGA of BTS),MAX,dance pop,2020.0,150,0.611,0.746,-7.034,0.133,0.411,173,0.454,0.101,72,C,144,4,2020-10-23--2020-10-30,5158896,689627,5dn6QANKbf76pANGjMBida,2020-09-15 00:00:00,"['dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
953,715,775,Blueberry Eyes (feat. SUGA of BTS),MAX,dance pop,2020.0,150,0.611,0.746,-7.034,0.133,0.411,173,0.454,0.101,72,C,144,4,2020-10-23--2020-10-30,5158896,689627,5dn6QANKbf76pANGjMBida,2020-09-15 00:00:00,"['dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop', 'viral pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,Germany
954,716,776,That’s It,"Future, Lil Uzi Vert",atl hip hop,2020.0,123,0.532,0.94,-5.998,0.0925,0.599,229,0.12,0.358,64,B,168,1,2020-11-13--2020-11-20,5151014,10491105,5n6gBhdEjCuj3obgCoTEFD,2020-11-13 00:00:00,"['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
955,717,777,Promiscuous,"Nelly Furtado, Timbaland",canadian latin,2006.0,114,0.97,0.808,-6.098,0.154,0.868,243,0.0569,0.0506,82,A#/Bb,157,4,2020-10-30--2020-11-06,5083648,2688557,2gam98EZKrF9XuOkU13ApN,2006-01-01 00:00:00,"['canadian latin', 'canadian pop', 'dance pop', 'pop', 'pop rap']",0,0,0,0,0,0,1,0,0,0,0,0,0,
956,718,778,GREECE (feat. Drake),DJ Khaled,hip hop,2020.0,86,0.343,0.695,-10.798,0.107,0.229,219,0.0743,0.0432,77,F,22,18,2020-07-17--2020-07-24,5043665,6281829,35RJhm1pEovTBwnNR0zWad,2020-07-16 00:00:00,"['hip hop', 'miami hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
957,719,779,just like magic,Ariana Grande,dance pop,2020.0,128,0.607,0.719,-5.156,0.125,0.464,150,0.08,0.165,69,G#/Ab,25,3,2020-10-30--2020-11-06,4980571,67208170,7Dx9Z6Aon1qPS2N0rHSWTe,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
958,720,780,Still Don't Know My Name,Labrinth,indie poptimism,2019.0,90,0.63,0.316,-5.963,0.205,0.313,154,0.471,0.117,80,F,53,15,2020-09-11--2020-09-18,4926802,1685215,6N22FZs2ZhPBYi3b9XPajV,2019-10-04 00:00:00,"['indie poptimism', 'pop']",0,1,0,0,1,0,0,0,0,0,0,0,0,United Kingdom
959,721,781,Hasta Que Dios Diga,"Anuel AA, Bad Bunny",latin,2020.0,174,0.765,0.691,-4.727,0.203,0.855,246,0.464,0.111,76,G#/Ab,32,25,2020-06-12--2020-06-19,4899099,18306226,06s3QtMJVXw1AJX3UfvZG1,2020-05-29 00:00:00,"['latin', 'reggaeton', 'reggaeton flow', 'trap boricua', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
960,722,782,Get You The Moon (feat. Snøw),Kina,sad rap,2018.0,119,0.235,0.498,-16.541,0.144,0.0895,180,0.72,0.188,82,C#/Db,102,46,2020-04-03--2020-04-10,4872409,661863,4ZLzoOkj0MPWrTLvooIuaa,2018-10-08 00:00:00,['sad rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,Italy
961,722,782,Get You The Moon (feat. Snøw),Kina,sad rap,2018.0,119,0.235,0.498,-16.541,0.144,0.0895,180,0.72,0.188,82,C#/Db,102,46,2020-04-03--2020-04-10,4872409,661863,4ZLzoOkj0MPWrTLvooIuaa,2018-10-08 00:00:00,['sad rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,United States
962,722,782,Get You The Moon (feat. Snøw),Kina,sad rap,2018.0,119,0.235,0.498,-16.541,0.144,0.0895,180,0.72,0.188,82,C#/Db,102,46,2020-04-03--2020-04-10,4872409,661863,4ZLzoOkj0MPWrTLvooIuaa,2018-10-08 00:00:00,['sad rap'],0,0,1,0,0,0,0,0,0,0,0,0,0,United States
963,723,783,Moonwalking in Calabasas (feat. Blueface) - Remix,DDG,rap,2020.0,130,0.341,0.928,-10.196,0.162,0.745,171,0.0614,0.103,74,B,162,4,2020-10-30--2020-11-06,4863053,486194,7o4gBbTM6UBLkOYPw9xMCz,2020-12-02 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
964,723,783,Moonwalking in Calabasas (feat. Blueface) - Remix,DDG,rap,2020.0,130,0.341,0.928,-10.196,0.162,0.745,171,0.0614,0.103,74,B,162,4,2020-10-30--2020-11-06,4863053,486194,7o4gBbTM6UBLkOYPw9xMCz,2020-12-02 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
965,724,784,Forever After All,Luke Combs,contemporary country,2020.0,152,0.65,0.487,-5.195,0.0933,0.456,233,0.191,0.0253,80,C,29,4,2020-10-23--2020-10-30,4746415,5371000,6IBcOGPsniK3Pso1wHIhew,2020-10-23 00:00:00,['contemporary country'],0,0,0,0,0,0,0,1,0,0,0,0,0,United States
966,725,786,SLOW DANCING IN THE DARK,Joji,alternative r&b,2018.0,89,0.479,0.515,-7.458,0.191,0.284,210,0.544,0.0261,82,D#/Eb,156,15,2020-02-07--2020-02-14,4732343,4759367,0rKtyWc8bvkriBthvHKY8d,2018-10-26 00:00:00,"['alternative r&b', 'viral pop']",0,0,1,0,1,0,0,0,0,0,0,0,0,United States
967,725,786,SLOW DANCING IN THE DARK,Joji,alternative r&b,2018.0,89,0.479,0.515,-7.458,0.191,0.284,210,0.544,0.0261,82,D#/Eb,156,15,2020-02-07--2020-02-14,4732343,4759367,0rKtyWc8bvkriBthvHKY8d,2018-10-26 00:00:00,"['alternative r&b', 'viral pop']",0,0,1,0,1,0,0,0,0,0,0,0,0,
968,726,787,Don Don,"Daddy Yankee, Anuel AA, Kendo Kaponi",latin,2020.0,105,0.819,0.838,-4.681,0.224,0.656,276,0.285,0.211,69,F,92,10,2020-09-18--2020-09-25,4731423,23936368,3kml9ZdpT7UYk1ugkjqOzt,2020-09-11 00:00:00,"['latin', 'latin hip hop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
969,727,788,my future,Billie Eilish,electropop,2021.0,105,0.285,0.456,-10.755,0.307,0.0809,211,0.814,0.0979,80,G#/Ab,5,12,2020-07-31--2020-08-07,4721082,47061119,3YUMWmx8EJq0DurfuIwoGh,2021-07-30 00:00:00,"['electropop', 'pop']",1,0,0,0,0,0,0,0,0,1,0,0,0,United States
970,728,789,Nada,"Cali Y El Dandee, Danna Paola",champeta,2020.0,174,0.808,0.684,-2.737,0.0858,0.712,175,0.0518,0.061,76,C,163,4,2020-10-23--2020-10-30,4713873,3152313,4K8cyoCDovlc4FvtUr2Hfx,2020-08-14 00:00:00,"['champeta', 'colombian pop', 'electro latino', 'latin', 'latin pop', 'reggaeton', 'reggaeton colombiano', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
971,729,790,safety net (feat. Ty Dolla $ign),Ariana Grande,dance pop,2020.0,162,0.599,0.552,-5.75,0.0986,0.0916,209,0.0703,0.0404,70,C#/Db,38,2,2020-10-30--2020-11-06,5798744,67208170,14gkWVFMwdxBMyqBw1wmIg,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
972,730,791,shut up,Ariana Grande,dance pop,2020.0,128,0.462,0.499,-5.308,0.0946,0.599,158,0.801,0.0312,63,C,31,2,2020-10-30--2020-11-06,5282490,67208170,3ko9jEHNt4O5fjKN65ULJp,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
973,731,792,nasty,Ariana Grande,dance pop,2020.0,128,0.506,0.772,-6.558,0.182,0.456,201,0.0814,0.139,69,F#/Gb,42,2,2020-10-30--2020-11-06,5249342,67208170,0sci7ppTZFm4mjcH3nu8yO,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
974,732,793,TRAGIC (feat. Youngboy Never Broke Again & Internet Money),The Kid LAROI,australian hip hop,2020.0,82,0.642,0.779,-6.321,0.2,0.388,154,0.0383,0.116,76,G#/Ab,168,1,2020-11-06--2020-11-13,5226940,2238190,13EW51DKru044OJDJ9Bm8o,2020-11-06 00:00:00,['australian hip hop'],0,0,1,0,0,0,0,0,0,0,0,0,0,
975,733,794,Ayer Me Llamó Mi Ex (feat. Lenny Santos),KHEA,argentine hip hop,2020.0,117,0.716,0.752,-5.2,0.243,0.553,207,0.254,0.0325,71,A#/Bb,49,12,2020-08-28--2020-09-04,5220504,3198705,6C6mUonH6MNdSg5pw7kOc9,2020-08-20 00:00:00,"['argentine hip hop', 'trap argentino', 'trap latino', 'trap triste']",0,0,1,0,0,0,0,0,0,0,0,0,0,
976,734,795,Madrid (feat. Myke Towers),Maluma,latin,2020.0,170,0.741,0.764,-3.617,0.107,0.802,199,0.239,0.101,73,A,119,11,2020-09-11--2020-09-18,5064484,26784251,19OXtYzrJyCrQvTbfukt4H,2020-08-21 00:00:00,"['latin', 'reggaeton', 'reggaeton colombiano']",0,0,0,0,0,1,0,0,0,0,0,0,0,Colombia
977,735,796,Caramelo - Remix,"Ozuna, KAROL G, Myke Towers",latin,2020.0,168,0.796,0.754,-3.743,0.204,0.62,234,0.062,0.139,72,D#/Eb,85,12,2020-09-11--2020-09-18,5033798,29238936,2uu2aGqA2UblCg581Q7l1g,2020-08-17 00:00:00,"['latin', 'puerto rican pop', 'reggaeton', 'trap latino']",0,0,0,0,0,1,0,0,0,0,0,0,0,
978,736,797,Mr. Right Now (feat. Drake),"21 Savage, Metro Boomin",atl hip hop,2020.0,172,0.667,0.647,-5.563,0.133,0.704,194,0.231,0.304,75,F,25,6,2020-10-02--2020-10-09,4951481,9949044,4Q34FP1AT7GEl9oLgNtiWj,2020-10-02 00:00:00,"['atl hip hop', 'hip hop', 'rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,
979,737,798,Got It On Me,Pop Smoke,brooklyn drill,2020.0,89,0.647,0.688,-7.258,0.095,0.195,165,0.00815,0.19,78,D,41,19,2020-07-03--2020-07-10,4924030,6852509,25zlnOAzbVoOzIeXSvQFf1,2020-07-03 00:00:00,['brooklyn drill'],0,0,1,0,0,0,0,0,0,0,0,0,0,
980,738,799,my hair,Ariana Grande,dance pop,2020.0,92,0.526,0.686,-6.842,0.144,0.372,159,0.0815,0.0374,66,C,49,2,2020-10-30--2020-11-06,4896521,67208170,6u7gmPOz7pzzaeR9xSBpsR,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
981,739,800,obvious,Ariana Grande,dance pop,2020.0,160,0.672,0.624,-5.334,0.155,0.26,147,0.0967,0.106,65,C,59,2,2020-10-30--2020-11-06,4865084,67208170,0q85C1JiECyYIQthz1posA,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
982,740,801,Beautiful People (feat. Khalid),Ed Sheeran,pop,2019.0,93,0.648,0.64,-8.113,0.0802,0.548,198,0.124,0.187,79,F,30,45,2019-12-27--2020-01-03,4813796,83337783,4evmHXcjt3bTUHD1cvny97,2019-06-28 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
983,740,801,Beautiful People (feat. Khalid),Ed Sheeran,pop,2019.0,93,0.648,0.64,-8.113,0.0802,0.548,198,0.124,0.187,79,F,30,45,2019-12-27--2020-01-03,4813796,83337783,4evmHXcjt3bTUHD1cvny97,2019-06-28 00:00:00,"['pop', 'uk pop']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
984,741,802,Favorito,Camilo,colombian pop,2020.0,178,0.851,0.611,-2.982,0.232,0.823,212,0.229,0.0598,73,A,29,32,2020-04-17--2020-04-24,4787127,10580764,0Snbzbd74RLfL0i4nn1vU5,2020-03-26 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,
985,741,802,Favorito,Camilo,colombian pop,2020.0,178,0.851,0.611,-2.982,0.232,0.823,212,0.229,0.0598,73,A,29,32,2020-04-17--2020-04-24,4787127,10580764,0Snbzbd74RLfL0i4nn1vU5,2020-03-26 00:00:00,"['colombian pop', 'reggaeton colombiano']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
986,742,803,After Party,Don Toliver,rap,2020.0,163,0.692,0.629,-8.045,0.603,0.453,168,0.00981,0.0376,80,F,42,30,2020-05-22--2020-05-29,4784580,1606884,527k23H0A4Q0UJN3vGs0Da,2020-03-13 00:00:00,"['rap', 'trap']",0,0,1,0,0,0,0,0,0,0,0,0,0,United States
987,743,805,six thirty,Ariana Grande,dance pop,2020.0,120,0.516,0.739,-7.154,0.151,0.434,184,0.67,0.0539,63,C,51,1,2020-10-30--2020-11-06,10941573,67208170,2IKJtXeR5UsaUjZB46fTOK,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
988,744,806,love language,Ariana Grande,dance pop,2020.0,110,0.573,0.688,-5.03,0.0749,0.553,180,0.0686,0.208,62,A#/Bb,65,1,2020-10-30--2020-11-06,9399230,67208170,6NYtLvyThMT0oALFdJFdzq,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
989,745,807,west side,Ariana Grande,dance pop,2020.0,88,0.455,0.688,-8.632,0.0794,0.557,133,0.186,0.199,62,B,66,1,2020-10-30--2020-11-06,9397167,67208170,1whfVLMKWqAX3uk97VXsNN,2020-10-30 00:00:00,"['dance pop', 'pop', 'post-teen pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
990,746,808,Thriller,Michael Jackson,pop,2017.0,118,0.887,0.764,-3.726,0.847,0.72,359,0.0816,0.0744,68,B,146,1,2020-10-30--2020-11-06,5605234,19345579,7azo4rpSUh8nXgtonC6Pkq,2017-09-27 00:00:00,"['pop', 'r&b', 'soul']",1,0,0,0,0,0,0,0,0,0,0,0,0,United States
991,746,808,Thriller,Michael Jackson,pop,2017.0,118,0.887,0.764,-3.726,0.847,0.72,359,0.0816,0.0744,68,B,146,1,2020-10-30--2020-11-06,5605234,19345579,7azo4rpSUh8nXgtonC6Pkq,2017-09-27 00:00:00,"['pop', 'r&b', 'soul']",1,0,0,0,0,0,0,0,0,0,0,0,0,United Kingdom
992,746,808,Thriller,Michael Jackson,pop,2017.0,118,0.887,0.764,-3.726,0.847,0.72,359,0.0816,0.0744,68,B,146,1,2020-10-30--2020-11-06,5605234,19345579,7azo4rpSUh8nXgtonC6Pkq,2017-09-27 00:00:00,"['pop', 'r&b', 'soul']",1,0,0,0,0,0,0,0,0,0,0,0,0,Australia
993,746,808,Thriller,Michael Jackson,pop,2017.0,118,0.887,0.764,-3.726,0.847,0.72,359,0.0816,0.0744,68,B,146,1,2020-10-30--2020-11-06,5605234,19345579,7azo4rpSUh8nXgtonC6Pkq,2017-09-27 00:00:00,"['pop', 'r&b', 'soul']",1,0,0,0,0,0,0,0,0,0,0,0,0,
994,747,809,Dancing With A Stranger (with Normani),Sam Smith,dance pop,2019.0,103,0.52,0.741,-7.513,0.222,0.347,172,0.45,0.0656,78,G#/Ab,105,26,2020-01-03--2020-01-10,5229835,17097317,6Qs4SXO9dwPj5GKvVOv8Ki,2019-01-11 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
995,747,809,Dancing With A Stranger (with Normani),Sam Smith,dance pop,2019.0,103,0.52,0.741,-7.513,0.222,0.347,172,0.45,0.0656,78,G#/Ab,105,26,2020-01-03--2020-01-10,5229835,17097317,6Qs4SXO9dwPj5GKvVOv8Ki,2019-01-11 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United States
996,747,809,Dancing With A Stranger (with Normani),Sam Smith,dance pop,2019.0,103,0.52,0.741,-7.513,0.222,0.347,172,0.45,0.0656,78,G#/Ab,105,26,2020-01-03--2020-01-10,5229835,17097317,6Qs4SXO9dwPj5GKvVOv8Ki,2019-01-11 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,
997,747,809,Dancing With A Stranger (with Normani),Sam Smith,dance pop,2019.0,103,0.52,0.741,-7.513,0.222,0.347,172,0.45,0.0656,78,G#/Ab,105,26,2020-01-03--2020-01-10,5229835,17097317,6Qs4SXO9dwPj5GKvVOv8Ki,2019-01-11 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,United Kingdom
998,747,809,Dancing With A Stranger (with Normani),Sam Smith,dance pop,2019.0,103,0.52,0.741,-7.513,0.222,0.347,172,0.45,0.0656,78,G#/Ab,105,26,2020-01-03--2020-01-10,5229835,17097317,6Qs4SXO9dwPj5GKvVOv8Ki,2019-01-11 00:00:00,"['dance pop', 'pop', 'post-teen pop', 'uk pop']",1,0,0,0,0,0,1,0,0,0,0,0,0,