-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
5220 lines (5220 loc) · 489 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"date": 1613256344278,
"genres": {
"pop": "https://embed.spotify.com/?uri=spotify:playlist:6gS3HhOiI17QNojjPuPzqc",
"dance pop": "https://embed.spotify.com/?uri=spotify:playlist:2ZIRxkFuqNPMnlY7vL54uK",
"rap": "https://embed.spotify.com/?uri=spotify:playlist:6s5MoZzR70Qef7x4bVxDO1",
"pop dance": "https://embed.spotify.com/?uri=spotify:playlist:2HhaArHsOiofpUheCRPkLa",
"rock": "https://embed.spotify.com/?uri=spotify:playlist:7dowgSWOmvdpwNkGFMUs6e",
"post-teen pop": "https://embed.spotify.com/?uri=spotify:playlist:10FCW9lj0NdeoYI5VVvVtY",
"pop rap": "https://embed.spotify.com/?uri=spotify:playlist:5SrYLEPXnsfmK4ZuOCIKKm",
"latin": "https://embed.spotify.com/?uri=spotify:playlist:1IGB0Uz7x2VY28qMagUC24",
"hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6MXkE0uYF4XwU4VTtyrpfP",
"trap latino": "https://embed.spotify.com/?uri=spotify:playlist:7MIkj5EbBCaUutUBEfGpEJ",
"trap": "https://embed.spotify.com/?uri=spotify:playlist:60SHtDyagDjPnUpC7x1UD9",
"modern rock": "https://embed.spotify.com/?uri=spotify:playlist:5HufsVvMDoIPr9tGzoJpW0",
"reggaeton": "https://embed.spotify.com/?uri=spotify:playlist:0VKCDh1qcRXjMfDhGEXihm",
"edm": "https://embed.spotify.com/?uri=spotify:playlist:3pDxuMpz94eDs7WFqudTbZ",
"electropop": "https://embed.spotify.com/?uri=spotify:playlist:1BYospE2cLB28m3i84dcTV",
"tropical house": "https://embed.spotify.com/?uri=spotify:playlist:5Z4GsFxPRJiN9Qme2P9q6H",
"pop rock": "https://embed.spotify.com/?uri=spotify:playlist:1voR0tqN6ZFkQ9QABvbCkZ",
"latin pop": "https://embed.spotify.com/?uri=spotify:playlist:5tRvNV4dHaAbqPORml4YFS",
"classic rock": "https://embed.spotify.com/?uri=spotify:playlist:6NbtuNCQqvy9FXg1eYNqjJ",
"mellow gold": "https://embed.spotify.com/?uri=spotify:playlist:49vErWAk7BLsLccmRxngH3",
"soft rock": "https://embed.spotify.com/?uri=spotify:playlist:7ABVommvnBuEMEwF5tTxkW",
"album rock": "https://embed.spotify.com/?uri=spotify:playlist:3yj9YnQGTdnFuKbDyXGDi6",
"melodic rap": "https://embed.spotify.com/?uri=spotify:playlist:2V9SF7DMoOLEvxGVGT4uuU",
"southern hip hop": "https://embed.spotify.com/?uri=spotify:playlist:18jT9NMRZifv6cMtK2jWD4",
"permanent wave": "https://embed.spotify.com/?uri=spotify:playlist:4EYSGTuqe9cVfSVpX4gtGv",
"tropical": "https://embed.spotify.com/?uri=spotify:playlist:5pkSkAC6JTpIgg0zSQoWdF",
"regional mexican": "https://embed.spotify.com/?uri=spotify:playlist:0Vv6NMPjPTWbdPybFlryM4",
"r&b": "https://embed.spotify.com/?uri=spotify:playlist:1rLnwJimWCmjp3f0mEbnkY",
"alternative metal": "https://embed.spotify.com/?uri=spotify:playlist:0zJrEnj3O8CohOpFFUVSo9",
"urban contemporary": "https://embed.spotify.com/?uri=spotify:playlist:07zF8MjQPsiYUXiAIGZ5TA",
"k-pop": "https://embed.spotify.com/?uri=spotify:playlist:3T1Rft817cZ3pguTvaWaz3",
"contemporary country": "https://embed.spotify.com/?uri=spotify:playlist:0VZfpqcbBUWC6kpP1vVrvA",
"indie pop": "https://embed.spotify.com/?uri=spotify:playlist:1aYiM4zLmBuFq0Fg6NQb6a",
"uk pop": "https://embed.spotify.com/?uri=spotify:playlist:0OGpuF8rnCzlcjJLsdywny",
"canadian pop": "https://embed.spotify.com/?uri=spotify:playlist:4GdH9Ia0enMmulZlKOt9n4",
"electro house": "https://embed.spotify.com/?uri=spotify:playlist:4luNnGhISZdURbFcCl2dB6",
"corrido": "https://embed.spotify.com/?uri=spotify:playlist:6UL8UnDWu9c95luN7S4wRs",
"hard rock": "https://embed.spotify.com/?uri=spotify:playlist:0yw5Q26eYIvaBediIFrYwN",
"adult standards": "https://embed.spotify.com/?uri=spotify:playlist:0FmeDxPXfsozPAyWv9uFjL",
"alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:3dlw4x21qVajwZLPNHtS3u",
"nu metal": "https://embed.spotify.com/?uri=spotify:playlist:6eFAocA46YeKpvr0HY4DQJ",
"alternative r&b": "https://embed.spotify.com/?uri=spotify:playlist:0Hwb2a9DJdom4yoe5V41K9",
"neo mellow": "https://embed.spotify.com/?uri=spotify:playlist:1u4LMI2YFyDRBtCJ00rbzm",
"rock en espanol": "https://embed.spotify.com/?uri=spotify:playlist:0xZkDM0jIfrFATSeaGt9Ms",
"folk rock": "https://embed.spotify.com/?uri=spotify:playlist:0TTsY3zQAYz6NppoHDR5MA",
"modern alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:3PMlHfN3H3GmOcTgEcGwJT",
"nuevo regional mexicano": "https://embed.spotify.com/?uri=spotify:playlist:20K7P3XPAqGdC0P42EAY1j",
"gangster rap": "https://embed.spotify.com/?uri=spotify:playlist:2tzFkp6VPJPeAhFe3b5uHk",
"country": "https://embed.spotify.com/?uri=spotify:playlist:4mijVkpSXJziPiOrK7YX4M",
"atl hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2NvIqZZ9VkCBIxrEbrwoM4",
"underground hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6d99h91us5ozdlNDvaeyXn",
"indie rock": "https://embed.spotify.com/?uri=spotify:playlist:4XXr357Jej7eUBh7XPK8hb",
"art rock": "https://embed.spotify.com/?uri=spotify:playlist:6PimpDQHW8sNtGfz1jDTAi",
"latin hip hop": "https://embed.spotify.com/?uri=spotify:playlist:31pfQ67BktLUcQ9n5VGnDI",
"new wave pop": "https://embed.spotify.com/?uri=spotify:playlist:6cZIwqYksHLjlRvhMMUizF",
"indie poptimism": "https://embed.spotify.com/?uri=spotify:playlist:7nHgmv7uyIA1KHj6qTttjH",
"dance rock": "https://embed.spotify.com/?uri=spotify:playlist:3PgRe3aEtNXhWm9GOUgOdG",
"europop": "https://embed.spotify.com/?uri=spotify:playlist:4vuWieduKii4KZrUboVr9d",
"chicago rap": "https://embed.spotify.com/?uri=spotify:playlist:71hJ9e25Ub4XZwiE1FZAjI",
"country road": "https://embed.spotify.com/?uri=spotify:playlist:4fj8PNbbwGXBWHKodGQhfD",
"pop punk": "https://embed.spotify.com/?uri=spotify:playlist:5prkai2xWcnqLxwORZSYbN",
"soul": "https://embed.spotify.com/?uri=spotify:playlist:1YUIw9n6voqxPzawnEf3A2",
"country rock": "https://embed.spotify.com/?uri=spotify:playlist:2yykv7TMUr4jPHPAE8Q3vW",
"viral pop": "https://embed.spotify.com/?uri=spotify:playlist:0tAsyMQoefUL8DWNn6xkAk",
"emo rap": "https://embed.spotify.com/?uri=spotify:playlist:0Fz9zaKbug4gw1xTvmTUWI",
"french hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1Wc17kLi2R2EsIACx5ElYt",
"latin alternative": "https://embed.spotify.com/?uri=spotify:playlist:6PBjVS6WmDRbFXYe39j8hN",
"german hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0N2gkh3nggtCtksCU2cSty",
"reggaeton colombiano": "https://embed.spotify.com/?uri=spotify:playlist:6svSgLHdMo6N5iGPSnUkKv",
"latin rock": "https://embed.spotify.com/?uri=spotify:playlist:31YWtFP5V22xiYZ2og7HOy",
"reggaeton flow": "https://embed.spotify.com/?uri=spotify:playlist:2HZIaMnfPMDf24XjrNXaMt",
"pop urbaine": "https://embed.spotify.com/?uri=spotify:playlist:21Le5iw1j6zgOMBtxioYfR",
"mexican pop": "https://embed.spotify.com/?uri=spotify:playlist:4sghNjSZeUx5DFTADuPhPj",
"k-pop boy group": "https://embed.spotify.com/?uri=spotify:playlist:7jGzify69eicmfL77zOGbm",
"house": "https://embed.spotify.com/?uri=spotify:playlist:6AzCASXpbvX5o3F8yaj1y0",
"indie folk": "https://embed.spotify.com/?uri=spotify:playlist:5Z5KHMrb3bNWGOZJ6y8gsL",
"j-pop": "https://embed.spotify.com/?uri=spotify:playlist:3leFycE2a7uXZyuC6DQbdQ",
"neo soul": "https://embed.spotify.com/?uri=spotify:playlist:2zxYQBTWiXgpQEyQggYSTm",
"hip pop": "https://embed.spotify.com/?uri=spotify:playlist:1btVAcL1TR8anpF72xgvjB",
"stomp and holler": "https://embed.spotify.com/?uri=spotify:playlist:3zVZ3GsfiYp0vlVazHcDXI",
"funk carioca": "https://embed.spotify.com/?uri=spotify:playlist:1aAckG2NI0cuL7QDKVeV2N",
"pop edm": "https://embed.spotify.com/?uri=spotify:playlist:5OFsiAHgwlYHB6XLK0kJ4p",
"desi pop": "https://embed.spotify.com/?uri=spotify:playlist:7JHxvhw9XPNKqtCt70xnAf",
"sertanejo universitario": "https://embed.spotify.com/?uri=spotify:playlist:4JU3dwfdYvsBf0c4MOerz0",
"sertanejo pop": "https://embed.spotify.com/?uri=spotify:playlist:1JsjFOxcEp912tK85VC98V",
"francoton": "https://embed.spotify.com/?uri=spotify:playlist:1ZoIbk8whEaIhk5q1UQYre",
"metal": "https://embed.spotify.com/?uri=spotify:playlist:3pBfUFu8MkyiCYyZe849Ks",
"sertanejo": "https://embed.spotify.com/?uri=spotify:playlist:2EkYuzS8qUbRdqV5Bjnnin",
"post-grunge": "https://embed.spotify.com/?uri=spotify:playlist:60NgGlktCblheYPBSSUUXz",
"colombian pop": "https://embed.spotify.com/?uri=spotify:playlist:2nl7TE1YytDEEfs4Ul6ALj",
"latin arena pop": "https://embed.spotify.com/?uri=spotify:playlist:59qMoqvlNat6Knc0feSWJn",
"indie cafe pop": "https://embed.spotify.com/?uri=spotify:playlist:571OWCRxZMCGVL4Ste9FVw",
"art pop": "https://embed.spotify.com/?uri=spotify:playlist:5oqAgQxfCjjD5ejU76a8V3",
"slap house": "https://embed.spotify.com/?uri=spotify:playlist:1TAxbbKCs6rlEQcrdVWYmW",
"lo-fi beats": "https://embed.spotify.com/?uri=spotify:playlist:5OzAgYmdiqJKWjGvX7cP4Q",
"psychedelic rock": "https://embed.spotify.com/?uri=spotify:playlist:7mXRIC5bSB6ZWOEPNfP0hl",
"new wave": "https://embed.spotify.com/?uri=spotify:playlist:1ydxatu4wrujF0H2hGU8IR",
"blues rock": "https://embed.spotify.com/?uri=spotify:playlist:2kISScyTs0we9kzH9MKEMb",
"funk": "https://embed.spotify.com/?uri=spotify:playlist:0MBvtOIm5fuBbRHEltDY8A",
"norteno": "https://embed.spotify.com/?uri=spotify:playlist:2UITkS3qkO0x6bKVzKZrbS",
"folk": "https://embed.spotify.com/?uri=spotify:playlist:4JuKjgd76AZn2fUaeXNCuo",
"rap francais": "https://embed.spotify.com/?uri=spotify:playlist:0iWAjJOZQvLdbYeBDisvdT",
"boy band": "https://embed.spotify.com/?uri=spotify:playlist:5MqoSHN1RNzdKd5T1QCN8S",
"australian pop": "https://embed.spotify.com/?uri=spotify:playlist:67qIuPZRX12l7yMpxBQpxs",
"spanish pop": "https://embed.spotify.com/?uri=spotify:playlist:40auwv5lX0xeL2w7Kr6BoT",
"singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:6gD9fCYGxsT9A8t3BHDVuj",
"roots rock": "https://embed.spotify.com/?uri=spotify:playlist:70fcjVBboCf2RrKXEMMMxl",
"canadian contemporary r&b": "https://embed.spotify.com/?uri=spotify:playlist:5wJb9tgSkHYu8lIXzallgA",
"indie soul": "https://embed.spotify.com/?uri=spotify:playlist:2I4WRSnG0wVgkbSasDUqKp",
"miami hip hop": "https://embed.spotify.com/?uri=spotify:playlist:4F2wv2RnXpmVW86K7Z2Es2",
"quiet storm": "https://embed.spotify.com/?uri=spotify:playlist:66k6nBXFo6of5ckPWCuCSi",
"progressive house": "https://embed.spotify.com/?uri=spotify:playlist:3ApHTzZrOMqtDhnyiBSSci",
"motown": "https://embed.spotify.com/?uri=spotify:playlist:28UOzZyORCx38D8dKe3fsq",
"filmi": "https://embed.spotify.com/?uri=spotify:playlist:1uny7o4LNoe7C5qJJ8S1k1",
"german pop": "https://embed.spotify.com/?uri=spotify:playlist:4pCmObKUeRQFFsF2nXu9t8",
"hoerspiel": "https://embed.spotify.com/?uri=spotify:playlist:6XDdeW5toilpyJXBi0Plxl",
"new romantic": "https://embed.spotify.com/?uri=spotify:playlist:4c8FDUUCm33WYC9xztAGYT",
"conscious hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3IU0ZFCSvKNqASPNsWoPuj",
"disco": "https://embed.spotify.com/?uri=spotify:playlist:0ZVSWcJIf7cvycEn9HUvps",
"east coast hip hop": "https://embed.spotify.com/?uri=spotify:playlist:61KJ6kPuE41yTp9SrHvWbZ",
"indietronica": "https://embed.spotify.com/?uri=spotify:playlist:0yqVOsxA2U4P260ad60QuU",
"canadian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:5e1PICDGQN7VplhLeKVATy",
"modern bollywood": "https://embed.spotify.com/?uri=spotify:playlist:2HibxdzVLGDPR5GIrm4cza",
"banda": "https://embed.spotify.com/?uri=spotify:playlist:6kFjZNVsJZVRGtjZsHbi5U",
"talent show": "https://embed.spotify.com/?uri=spotify:playlist:1lMgl0D1HZVvtq16pB13ew",
"brill building pop": "https://embed.spotify.com/?uri=spotify:playlist:1afcjkK4GbaOpct5MpecCQ",
"ranchera": "https://embed.spotify.com/?uri=spotify:playlist:7bVLsTfYqQKkYOpUglYAp3",
"sad rap": "https://embed.spotify.com/?uri=spotify:playlist:2uM2IvAqc6HZmEiRjJBF6Q",
"rap metal": "https://embed.spotify.com/?uri=spotify:playlist:6VKTnBP8zsyEmP1Sk7TvMm",
"progressive electro house": "https://embed.spotify.com/?uri=spotify:playlist:6j9xPeEsHgCS1eZW0HsIsk",
"k-pop girl group": "https://embed.spotify.com/?uri=spotify:playlist:64KEXfUapxhkmiqKDsBrbN",
"uk dance": "https://embed.spotify.com/?uri=spotify:playlist:5kDzf9eWk24U16EBkTDdpb",
"swedish pop": "https://embed.spotify.com/?uri=spotify:playlist:6mvBNM74d828wcEy9Bpb46",
"vapor trap": "https://embed.spotify.com/?uri=spotify:playlist:7o7kEPpjIe3yRRPbDFJSIR",
"pop r&b": "https://embed.spotify.com/?uri=spotify:playlist:2BvxkVFgxGelSCrWV53I2o",
"sierreno": "https://embed.spotify.com/?uri=spotify:playlist:1ToiYTSneIiS6m4pYfrZrI",
"electronica": "https://embed.spotify.com/?uri=spotify:playlist:6I0NsYzfoj7yHXyvkZYoRx",
"italian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:5kMRm3YJv7ZyX1VTmVZpdN",
"glam rock": "https://embed.spotify.com/?uri=spotify:playlist:71LnSyxXMKcxgJSAhC1KDK",
"puerto rican pop": "https://embed.spotify.com/?uri=spotify:playlist:0KPfijR82jvlPTnt3Hmu2Q",
"ccm": "https://embed.spotify.com/?uri=spotify:playlist:5prvXHLGfLtWJ7tB4W8Fvl",
"escape room": "https://embed.spotify.com/?uri=spotify:playlist:1BwLE6QTlmYAtosuvJcgY7",
"punk": "https://embed.spotify.com/?uri=spotify:playlist:17qQT0G3yFjOJ02wWZaNCw",
"social media pop": "https://embed.spotify.com/?uri=spotify:playlist:0lXSqruCjvX1e7hw2KGvKw",
"mpb": "https://embed.spotify.com/?uri=spotify:playlist:0Fr9ysvU9XjFBMl4Rhl755",
"desi hip hop": "https://embed.spotify.com/?uri=spotify:playlist:7hCUgCmtC02mQe4lUg5ZSs",
"alternative dance": "https://embed.spotify.com/?uri=spotify:playlist:5LwcdWTCx2JoWeVVWOYsGj",
"metropopolis": "https://embed.spotify.com/?uri=spotify:playlist:70z5dMlsS9fPudWdQ9ebqP",
"uk hip hop": "https://embed.spotify.com/?uri=spotify:playlist:4Ek92zIh4Sq5IVU9Mgv7d6",
"toronto rap": "https://embed.spotify.com/?uri=spotify:playlist:5dNwPmkdZFN0PBpWnke6pp",
"lounge": "https://embed.spotify.com/?uri=spotify:playlist:7jk0EKyr4Lc4jc4XPE4ycL",
"christian music": "https://embed.spotify.com/?uri=spotify:playlist:1b1BPM9hp5Q0eI7yuGTaot",
"modern country rock": "https://embed.spotify.com/?uri=spotify:playlist:01b3JSy4UfA2iiKodhAXse",
"bedroom pop": "https://embed.spotify.com/?uri=spotify:playlist:339zjWDksACL7sNs2UehlX",
"argentine rock": "https://embed.spotify.com/?uri=spotify:playlist:70yDbCeImYqhxCDRU0qXpd",
"vocal jazz": "https://embed.spotify.com/?uri=spotify:playlist:2ZazIXecBCVmTlbyKJHxOc",
"otacore": "https://embed.spotify.com/?uri=spotify:playlist:5UBQfw8fKxi6ADXxUdUT2K",
"dark trap": "https://embed.spotify.com/?uri=spotify:playlist:1lEZC1rWlusGF0IC6JxR5V",
"soundtrack": "https://embed.spotify.com/?uri=spotify:playlist:2RmQ1WAONeEih0FWEK7CW5",
"hardcore hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0iMt55EhVZULr9oClWtyOX",
"classical": "https://embed.spotify.com/?uri=spotify:playlist:3HYK6ri0GkvRcM6GkKh0hJ",
"hollywood": "https://embed.spotify.com/?uri=spotify:playlist:0V1QibeEirHFpZ68S37kGy",
"emo": "https://embed.spotify.com/?uri=spotify:playlist:4eC7Sa1Xcy33lKn53gfiZb",
"worship": "https://embed.spotify.com/?uri=spotify:playlist:1auZ2gm318zSzLhrknJtVw",
"alternative hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2kHQTJJWXc54i8mX8ndYdf",
"cali rap": "https://embed.spotify.com/?uri=spotify:playlist:4KxHxwmVq3Q7Gg9wkyOwzV",
"metalcore": "https://embed.spotify.com/?uri=spotify:playlist:71kedeh6L7P0equUL0vOqe",
"brooklyn drill": "https://embed.spotify.com/?uri=spotify:playlist:6cKDwODDI0Cxba36w964fK",
"pagode": "https://embed.spotify.com/?uri=spotify:playlist:2mL2d1k8Vxlf4P4q6JqcAv",
"pop nacional": "https://embed.spotify.com/?uri=spotify:playlist:4yf2dXdO6U7TVDXZMbm8nY",
"indonesian pop": "https://embed.spotify.com/?uri=spotify:playlist:4VNawKxjIoJkE30Z9LbFzA",
"heartland rock": "https://embed.spotify.com/?uri=spotify:playlist:73X32zjxrkOSaroGsaCJKx",
"italian pop": "https://embed.spotify.com/?uri=spotify:playlist:1otEUipmOvjOGGqvEHHxEy",
"detroit hip hop": "https://embed.spotify.com/?uri=spotify:playlist:7gIFgVQoSml3JocSRd2t4S",
"rap rock": "https://embed.spotify.com/?uri=spotify:playlist:2xlyZ5SKttZHYxLU6o9mle",
"world worship": "https://embed.spotify.com/?uri=spotify:playlist:5KopCY959BEZz4oWcG9yNS",
"big room": "https://embed.spotify.com/?uri=spotify:playlist:70E7wtl8eL3IG2kpaWok6E",
"piano rock": "https://embed.spotify.com/?uri=spotify:playlist:5rVVQKO7UFXkwpt7jF1Ne4",
"lgbtq+ hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0njc7Pu7XGeU25wdaJRdLm",
"west coast rap": "https://embed.spotify.com/?uri=spotify:playlist:3tSxvStT2zgdgPcTxLdI3g",
"yacht rock": "https://embed.spotify.com/?uri=spotify:playlist:1imbMwZYgwB2NCAVPkq5sZ",
"folk-pop": "https://embed.spotify.com/?uri=spotify:playlist:1RWc3d424qgjr8HTwCVh6A",
"sufi": "https://embed.spotify.com/?uri=spotify:playlist:61rjzIILTnivihI046xLYP",
"forro": "https://embed.spotify.com/?uri=spotify:playlist:6aRR1ZmHR6ehjbhlsoctG1",
"new americana": "https://embed.spotify.com/?uri=spotify:playlist:7uSlfH4blWi70SZAtqAWbe",
"j-poprock": "https://embed.spotify.com/?uri=spotify:playlist:0Grl1cS6EIySP2ORk0ygYr",
"italian adult pop": "https://embed.spotify.com/?uri=spotify:playlist:4APG0kwkbEt77VxOuqKCUl",
"urbano espanol": "https://embed.spotify.com/?uri=spotify:playlist:6gpELhsiYJyaL13srOlTMQ",
"new rave": "https://embed.spotify.com/?uri=spotify:playlist:3ZlEqn2WSADG2wVMPhKHsd",
"french pop": "https://embed.spotify.com/?uri=spotify:playlist:03csHhetcFo29YHV4Z9A3g",
"chillhop": "https://embed.spotify.com/?uri=spotify:playlist:0cRVSi1eXiAYipZDgVU11c",
"turkish pop": "https://embed.spotify.com/?uri=spotify:playlist:4oKodlbJBRKSssO8LhsisY",
"j-rock": "https://embed.spotify.com/?uri=spotify:playlist:537P5gB83q9AmtDFdFNBLO",
"trap queen": "https://embed.spotify.com/?uri=spotify:playlist:24lpzMRS776gtph07QO0AK",
"garage rock": "https://embed.spotify.com/?uri=spotify:playlist:4Wnjv0bnb6Y7Il7WhEJC3x",
"brazilian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2CBOZqWolmSfOeXAo8mCFZ",
"russian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:69d6UEZKkFtQNEDQyntv7S",
"mariachi": "https://embed.spotify.com/?uri=spotify:playlist:5eAqREKMQTvNSVE3R8oVEj",
"christian alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:3P1RRrVtaVLBTOvvNm8k8N",
"beatlesque": "https://embed.spotify.com/?uri=spotify:playlist:7DMAadYDfKZnsaZcDKFPK4",
"dirty south rap": "https://embed.spotify.com/?uri=spotify:playlist:3l6M4SAmRg9L0DlalK76H8",
"sleep": "https://embed.spotify.com/?uri=spotify:playlist:0cuaFpexE9V0zr3s7l6yjR",
"british invasion": "https://embed.spotify.com/?uri=spotify:playlist:4UptWIEPwIimCpCHayG4yZ",
"vapor soul": "https://embed.spotify.com/?uri=spotify:playlist:5jpKrLqZrBe4Mm375dcaye",
"anime": "https://embed.spotify.com/?uri=spotify:playlist:5fSZTu6aISl80OPrmGu79j",
"glam metal": "https://embed.spotify.com/?uri=spotify:playlist:7yC6AO4CRgiFDjhYUkPUzX",
"acoustic pop": "https://embed.spotify.com/?uri=spotify:playlist:7vgw73gZZ5gAIxK2emsSPU",
"opm": "https://embed.spotify.com/?uri=spotify:playlist:2LfEVQ7ETewcpbNa2IVsH7",
"corridos tumbados": "https://embed.spotify.com/?uri=spotify:playlist:1CrWKL1wwHpcYQqLmQpHxH",
"brazilian rock": "https://embed.spotify.com/?uri=spotify:playlist:3nExI3KhiOs9fFobjdHzfj",
"melodic metalcore": "https://embed.spotify.com/?uri=spotify:playlist:4PsFYH9aJDNjy7iwkWag7S",
"classic soul": "https://embed.spotify.com/?uri=spotify:playlist:1eWqWLqf2wmssHJFvNLK2P",
"kleine hoerspiel": "https://embed.spotify.com/?uri=spotify:playlist:27XLynMa4krkiA9piuqyT1",
"cantautor": "https://embed.spotify.com/?uri=spotify:playlist:2KMAWk6brKSc3lVAsRZIMH",
"synthpop": "https://embed.spotify.com/?uri=spotify:playlist:71wpwg8KzRxx240DcJx2EE",
"rock-and-roll": "https://embed.spotify.com/?uri=spotify:playlist:34bhxCaWrYi4kF67mNYiXW",
"indie r&b": "https://embed.spotify.com/?uri=spotify:playlist:2xblssDewgd1AA5R7Lap6w",
"brostep": "https://embed.spotify.com/?uri=spotify:playlist:6dvgLyeXG3HLGqtMa8wAX0",
"mexican hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0zTflwpEJVMnCOSmExgS75",
"dutch pop": "https://embed.spotify.com/?uri=spotify:playlist:56vsjg8uIptImNUVOyXi5d",
"background music": "https://embed.spotify.com/?uri=spotify:playlist:2JsqQdMbBC2hh7GjsEjKFg",
"trap argentino": "https://embed.spotify.com/?uri=spotify:playlist:0t2kp4dTSFBUA8doPFtUuY",
"new french touch": "https://embed.spotify.com/?uri=spotify:playlist:7m1pFx600mZCOuIsOoEIZW",
"show tunes": "https://embed.spotify.com/?uri=spotify:playlist:0Psnw0YWHuqAvVO8YhYJWF",
"rap conscient": "https://embed.spotify.com/?uri=spotify:playlist:3kYWjrbBEvI8n3bPI2ZRml",
"meme rap": "https://embed.spotify.com/?uri=spotify:playlist:6Aq8qvliiLbYnxkUbse6DT",
"australian dance": "https://embed.spotify.com/?uri=spotify:playlist:3iiCEjJsCfkP18Xfqv9fZi",
"country pop": "https://embed.spotify.com/?uri=spotify:playlist:1kmPba3K0wZwyVJXktgJii",
"turkish trap pop": "https://embed.spotify.com/?uri=spotify:playlist:6O8py1VYpktcoAnKP3Qj0w",
"british soul": "https://embed.spotify.com/?uri=spotify:playlist:4Ar1S6TuqmS0R2RV59AR1k",
"indiecoustica": "https://embed.spotify.com/?uri=spotify:playlist:4RCjZQTtM2pXauBjFNRcGQ",
"mandopop": "https://embed.spotify.com/?uri=spotify:playlist:4EIGwSoao5WkHd5YVP4CfG",
"polish hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1DXuK8SBX4BNVEkZ4ifHBJ",
"funk metal": "https://embed.spotify.com/?uri=spotify:playlist:6JqQli6WY1G043Mihy3MBp",
"chill r&b": "https://embed.spotify.com/?uri=spotify:playlist:60FHIWc8xWDuaUyPMlhPFm",
"melancholia": "https://embed.spotify.com/?uri=spotify:playlist:6gB4lvhZqPfknvnw2iNwL6",
"electronic trap": "https://embed.spotify.com/?uri=spotify:playlist:2UZjomZ9r1O9gWyT3BLOZC",
"dance-punk": "https://embed.spotify.com/?uri=spotify:playlist:6c6EDGbcWdOSUvTaaUENyg",
"australian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6wYuYcsFOmTuWnYqEalOhk",
"ohio hip hop": "https://embed.spotify.com/?uri=spotify:playlist:56EJ8xSxox8qhQRuruKlo2",
"dfw rap": "https://embed.spotify.com/?uri=spotify:playlist:6ze96fv5x3AklLyAqxPPv8",
"funk ostentacao": "https://embed.spotify.com/?uri=spotify:playlist:47f23xvBayJUjEhAlUB7xS",
"lilith": "https://embed.spotify.com/?uri=spotify:playlist:7yNFFzl1njPs3ToiRrWU9w",
"eurodance": "https://embed.spotify.com/?uri=spotify:playlist:4jw4G9J55p7tXV2xEAGUj4",
"new jack swing": "https://embed.spotify.com/?uri=spotify:playlist:0zn8nuASKC0PISqD9mxCSV",
"viral rap": "https://embed.spotify.com/?uri=spotify:playlist:0JlicqX0XpVPjBfyriYDPP",
"girl group": "https://embed.spotify.com/?uri=spotify:playlist:0vgSCZFzrE0eId4bKI1NNt",
"anthem worship": "https://embed.spotify.com/?uri=spotify:playlist:0pcdBX3CHzyOFHeyu7RAQI",
"deep house": "https://embed.spotify.com/?uri=spotify:playlist:4ZRv1fFjjwpgAcosytT3bd",
"baroque pop": "https://embed.spotify.com/?uri=spotify:playlist:1e3sjciHZnhGYpaVYv6rO1",
"easy listening": "https://embed.spotify.com/?uri=spotify:playlist:47RSt6JBM6AbqBxtggW1Jk",
"turkish hip hop": "https://embed.spotify.com/?uri=spotify:playlist:4t5PSWEsLQeZ4i90PEpW9i",
"nova mpb": "https://embed.spotify.com/?uri=spotify:playlist:6csaLz3wHWP7Mdl3x2tmxk",
"trance": "https://embed.spotify.com/?uri=spotify:playlist:5vBxJ3Y2DbAna3xBJpGz0z",
"mexican rock": "https://embed.spotify.com/?uri=spotify:playlist:5FI68jaboLczr9zIUVfQPW",
"chanson": "https://embed.spotify.com/?uri=spotify:playlist:6IyBSGUEuApnT6miXVlKLf",
"symphonic rock": "https://embed.spotify.com/?uri=spotify:playlist:7xy3Cy7QkWNgDjkntVvda8",
"video game music": "https://embed.spotify.com/?uri=spotify:playlist:3fMUb3gZXZ8ibcJb5zvy8r",
"german rock": "https://embed.spotify.com/?uri=spotify:playlist:4g8qRc8jVOv6bQc4ybb0rF",
"grunge": "https://embed.spotify.com/?uri=spotify:playlist:2PNaFf1DInEl8NJSdkE4F4",
"indie anthem-folk": "https://embed.spotify.com/?uri=spotify:playlist:4Ub3q1CU9YGXR2bkJ4wKwe",
"scorecore": "https://embed.spotify.com/?uri=spotify:playlist:1v75VUwKR28oOd6Lf3C6JD",
"north carolina hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3G9abO9U7dJa0kR4ZKhapR",
"dutch hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6BXgKjKKHLt63XIEjs4WIx",
"freak folk": "https://embed.spotify.com/?uri=spotify:playlist:4KgZ9ZN10RfjRxBYkj6tTK",
"outlaw country": "https://embed.spotify.com/?uri=spotify:playlist:5D1IoXQGtdt84Mx8QvvSSY",
"grupera": "https://embed.spotify.com/?uri=spotify:playlist:1MBLuaTt9FmjgW3AVAlIKo",
"progressive rock": "https://embed.spotify.com/?uri=spotify:playlist:1sYzsb7P37XzNZoUR2GGdm",
"korean pop": "https://embed.spotify.com/?uri=spotify:playlist:6tc3J6NhFZJkw0n7ix0w5l",
"german dance": "https://embed.spotify.com/?uri=spotify:playlist:0ociygIFg7QypC1T9v1g7x",
"deep talent show": "https://embed.spotify.com/?uri=spotify:playlist:4JKxumLa2EhDCRrKR72cjI",
"deep german hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1p4L83YzPEhIPZHF94bJ7z",
"compositional ambient": "https://embed.spotify.com/?uri=spotify:playlist:2nKOwEQWB8qDAG5Qcs0kWc",
"funk rock": "https://embed.spotify.com/?uri=spotify:playlist:2v7uYvX2h5hNSukaqp9LCb",
"queens hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0AxeQveEqk8X42sovBCls8",
"australian rock": "https://embed.spotify.com/?uri=spotify:playlist:0D5WxMvZQ7kZJCgF0xu2kJ",
"salsa": "https://embed.spotify.com/?uri=spotify:playlist:58ELr3yC5uxg8QsQWD8Lmy",
"argentine hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6tT2e2rcnpUrywDkmgSASj",
"cumbia pop": "https://embed.spotify.com/?uri=spotify:playlist:1fcPcaUecENuGmupx6P6xw",
"bolero": "https://embed.spotify.com/?uri=spotify:playlist:40h91GpdbHja6VVsnetD0r",
"chillwave": "https://embed.spotify.com/?uri=spotify:playlist:5pDD5tz9aQULzowpuKMSep",
"calming instrumental": "https://embed.spotify.com/?uri=spotify:playlist:64rpUcla6sbXJFkaOAq1qu",
"norwegian pop": "https://embed.spotify.com/?uri=spotify:playlist:5j9E5msjnYEL2PZLjRzfQy",
"anime rock": "https://embed.spotify.com/?uri=spotify:playlist:0LUqgNyVlPVcZ34ODl30kv",
"german trap": "https://embed.spotify.com/?uri=spotify:playlist:4hvpHorF4NBbh4XHXdeXYR",
"screamo": "https://embed.spotify.com/?uri=spotify:playlist:3yvVzKRxdUAc7vxWdwQfGS",
"latin viral pop": "https://embed.spotify.com/?uri=spotify:playlist:6yZCXdIyG6jxAnWnm2wXKp",
"downtempo": "https://embed.spotify.com/?uri=spotify:playlist:5zxj55xrB53As97uvt5x8x",
"g funk": "https://embed.spotify.com/?uri=spotify:playlist:7c1Z3aCJLt7YisQQyXwypK",
"merseybeat": "https://embed.spotify.com/?uri=spotify:playlist:2FE5Q5imNlAYRKubRHOuE8",
"background piano": "https://embed.spotify.com/?uri=spotify:playlist:66O4FigZBxS4Tz80TbZ9Zc",
"russian pop": "https://embed.spotify.com/?uri=spotify:playlist:3C24egLjqcCmIMgfztqI2r",
"power metal": "https://embed.spotify.com/?uri=spotify:playlist:1sy0OGu2TTXLTiZ7zMdcoB",
"neo-classical": "https://embed.spotify.com/?uri=spotify:playlist:6Y3YErcNrY3sVJkq6y9GtT",
"atl trap": "https://embed.spotify.com/?uri=spotify:playlist:3JqPLi8uM4ldiPdT3T6Oy8",
"punjabi pop": "https://embed.spotify.com/?uri=spotify:playlist:0a8gfAB5pIeR5x2ln5ARq0",
"australian indie": "https://embed.spotify.com/?uri=spotify:playlist:4Qqc4lX4i4A8uXD9SBQy7S",
"rockabilly": "https://embed.spotify.com/?uri=spotify:playlist:5LNGaRZPGqluUQWQBY49WS",
"country dawn": "https://embed.spotify.com/?uri=spotify:playlist:2qk8D3ZyEBXDwR02alzjXq",
"pop soul": "https://embed.spotify.com/?uri=spotify:playlist:0ShRnc2cyEyxkLbtZC4Yim",
"chamber pop": "https://embed.spotify.com/?uri=spotify:playlist:1UqeJ3nLHNDOlA6zwFkimJ",
"britpop": "https://embed.spotify.com/?uri=spotify:playlist:5H4y9vLqOhWGn0xsExGxKb",
"gaming edm": "https://embed.spotify.com/?uri=spotify:playlist:5kredHbbKjb6EUN5exsaQh",
"trap italiana": "https://embed.spotify.com/?uri=spotify:playlist:6AxIe6nptUOe8jJ4LeNptt",
"reggae": "https://embed.spotify.com/?uri=spotify:playlist:0TcXdt4sbITbwCwwFbKYyd",
"reggae fusion": "https://embed.spotify.com/?uri=spotify:playlist:0j92q9CkBFlHDpgcIURMd6",
"florida rap": "https://embed.spotify.com/?uri=spotify:playlist:5NELYHLIR9VEbXvj9h52vV",
"philly rap": "https://embed.spotify.com/?uri=spotify:playlist:46OzYiu5J1KvNDAwyY126g",
"modern blues rock": "https://embed.spotify.com/?uri=spotify:playlist:2KmAVEfiJy17zDEZslvmSg",
"bubblegum pop": "https://embed.spotify.com/?uri=spotify:playlist:6GLXp5kwSs0HRDnh6fqKKZ",
"bow pop": "https://embed.spotify.com/?uri=spotify:playlist:6kD1by03LqVcIK7FfQ23Ub",
"dream pop": "https://embed.spotify.com/?uri=spotify:playlist:2A5zN7OTP4n64gEtsFEO2Z",
"texas country": "https://embed.spotify.com/?uri=spotify:playlist:4HbGCzaH6bTsF1FGAESEzG",
"dutch edm": "https://embed.spotify.com/?uri=spotify:playlist:0DX9WVEaDkEiax6hcVqdaL",
"french indie pop": "https://embed.spotify.com/?uri=spotify:playlist:7pSUsof5crZi6c4k8Hun3q",
"bubblegum dance": "https://embed.spotify.com/?uri=spotify:playlist:2FYJ3kw41qQGBtIDhusO7L",
"indie garage rock": "https://embed.spotify.com/?uri=spotify:playlist:7lCazMg1AalQrclLnSpn7v",
"dutch rap pop": "https://embed.spotify.com/?uri=spotify:playlist:3NxTF39nYRfSUx8Tc10nvA",
"bachata": "https://embed.spotify.com/?uri=spotify:playlist:5CllQE0jNYEbZWEjyhDD6J",
"industrial metal": "https://embed.spotify.com/?uri=spotify:playlist:65Jejep3SssPpTW8RGELh6",
"trap boricua": "https://embed.spotify.com/?uri=spotify:playlist:4fWARp37Pjz3rf3WvVIAFz",
"bossa nova": "https://embed.spotify.com/?uri=spotify:playlist:62CfN1iGlw8MZDMht3P6I3",
"german techno": "https://embed.spotify.com/?uri=spotify:playlist:1x7cCTGSYF2xYu1hWiPQWk",
"axe": "https://embed.spotify.com/?uri=spotify:playlist:2ohTpPrJnqmuPYGlzwSPZe",
"classic uk pop": "https://embed.spotify.com/?uri=spotify:playlist:1a8bmZL1UIDLb9XqSfgtws",
"brazilian edm": "https://embed.spotify.com/?uri=spotify:playlist:5VJcwlSzgFtpClXb8xtXs6",
"la indie": "https://embed.spotify.com/?uri=spotify:playlist:0C1hLm2vFuQgqMnjv31lBK",
"trap soul": "https://embed.spotify.com/?uri=spotify:playlist:2G0hc5WoKd28Zhwtpn48Mh",
"trap brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:6u3BeKMf8CUZe4ab0HtNbT",
"rock nacional": "https://embed.spotify.com/?uri=spotify:playlist:3ygLQ0p0Leod5w6KC1otBx",
"focus beats": "https://embed.spotify.com/?uri=spotify:playlist:4s0siSTRtglRvQKxpWJ6pM",
"children's music": "https://embed.spotify.com/?uri=spotify:playlist:3EBkMektqMgkilc2bOehLD",
"danish pop": "https://embed.spotify.com/?uri=spotify:playlist:2d4TUfOahHzSBYo0zm8mnV",
"neo-psychedelic": "https://embed.spotify.com/?uri=spotify:playlist:7qhZxfWGh9O2HWt3V7gpSA",
"canadian rock": "https://embed.spotify.com/?uri=spotify:playlist:4STQEZTDt5QijuCxmg3DpB",
"deep groove house": "https://embed.spotify.com/?uri=spotify:playlist:7FAkb5HaFNBqFFVVGFvMTE",
"adoracao": "https://embed.spotify.com/?uri=spotify:playlist:2F44c8g3v3EsAuPQvmHTIl",
"barbadian pop": "https://embed.spotify.com/?uri=spotify:playlist:4skZam98b2PwmuWxS8fAT5",
"candy pop": "https://embed.spotify.com/?uri=spotify:playlist:1g2P36W1Dn9CYyegAm7Z4x",
"southern soul": "https://embed.spotify.com/?uri=spotify:playlist:5Q3wLZoh8pyDIboX6XolLp",
"skate punk": "https://embed.spotify.com/?uri=spotify:playlist:3RRuHMQvn4gPIfK802sqlb",
"bass trap": "https://embed.spotify.com/?uri=spotify:playlist:28qL4DDUcphiGvSyJdW77W",
"sophisti-pop": "https://embed.spotify.com/?uri=spotify:playlist:18LufJPENHQkScaoTPZLAm",
"spanish hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3WLnRqmW5IZOATVCnNqZk5",
"dmv rap": "https://embed.spotify.com/?uri=spotify:playlist:3ifLzTZj0ut6AZbJ6bwhF9",
"country rap": "https://embed.spotify.com/?uri=spotify:playlist:0vbiEQuSW4DIvyr169jPzg",
"new orleans rap": "https://embed.spotify.com/?uri=spotify:playlist:41wq6c8ic47zFa4ixRZp6P",
"italian indie pop": "https://embed.spotify.com/?uri=spotify:playlist:0Mu1FW9n1ca5nGoYi54x9i",
"nouvelle chanson francaise": "https://embed.spotify.com/?uri=spotify:playlist:3oZK1D458xeFA0EVuAoesb",
"shimmer pop": "https://embed.spotify.com/?uri=spotify:playlist:1HxlHisjJGDQLJzg35NVIy",
"pittsburgh rap": "https://embed.spotify.com/?uri=spotify:playlist:5hEnBDgbXhqEa2mUr4sFVU",
"nyc rap": "https://embed.spotify.com/?uri=spotify:playlist:6YiocLoaqYYGiAztoGspzh",
"latin worship": "https://embed.spotify.com/?uri=spotify:playlist:6qubMJr7QEW6vCHogJU9u3",
"rap calme": "https://embed.spotify.com/?uri=spotify:playlist:6fCJ2iyUhivh8ghIqBQ9Nr",
"nueva cancion": "https://embed.spotify.com/?uri=spotify:playlist:4KQJeZBvV1unP9fIFwNtjP",
"turkish trap": "https://embed.spotify.com/?uri=spotify:playlist:5HmIKVhLNyi6CLopqdLJVU",
"comic": "https://embed.spotify.com/?uri=spotify:playlist:5yGDZPBsmXKUf3e22QHIh4",
"r&b en espanol": "https://embed.spotify.com/?uri=spotify:playlist:4tzYxjoGLrGjrjp1x0Sggg",
"deep tropical house": "https://embed.spotify.com/?uri=spotify:playlist:49W2BLxvDqnN3hsFLAIoqc",
"dancehall": "https://embed.spotify.com/?uri=spotify:playlist:4NWfwcqBdZ3wltgu3BESG7",
"traditional folk": "https://embed.spotify.com/?uri=spotify:playlist:5j3yYNLrqwPHmXzckFjOwW",
"roots reggae": "https://embed.spotify.com/?uri=spotify:playlist:0cT7S92xSEh5wjPSSifu8I",
"deep regional mexican": "https://embed.spotify.com/?uri=spotify:playlist:7tt8E0lrPF9IoZ1gxM9Bn1",
"gruperas inmortales": "https://embed.spotify.com/?uri=spotify:playlist:7fwQCsCDYxnmWtXUkETn3v",
"samba": "https://embed.spotify.com/?uri=spotify:playlist:3xh2sgnL4trGV8rlHTfjgv",
"uk contemporary r&b": "https://embed.spotify.com/?uri=spotify:playlist:5kdP7VQedYdDzhTvfovu0u",
"dutch rock": "https://embed.spotify.com/?uri=spotify:playlist:6GVUfirEB9jLZzk1lA7XZT",
"grime": "https://embed.spotify.com/?uri=spotify:playlist:6tpwcBIh10DbSUksx3mRB5",
"modern indie pop": "https://embed.spotify.com/?uri=spotify:playlist:0FkLYgMF09lmzytexAraKv",
"sheffield indie": "https://embed.spotify.com/?uri=spotify:playlist:7oJElJ9V5z6jWiJEA4S6DM",
"c-pop": "https://embed.spotify.com/?uri=spotify:playlist:1xyLXFq8PsdtkBeTmWqRjQ",
"indie pop rap": "https://embed.spotify.com/?uri=spotify:playlist:6KO7rNq7jfMLQ5oQ8If6x9",
"environmental": "https://embed.spotify.com/?uri=spotify:playlist:5p63jelsoTJGZy0mEzmu28",
"nz pop": "https://embed.spotify.com/?uri=spotify:playlist:6rZGKd5ndSUnGeJKuBhUej",
"classic italian pop": "https://embed.spotify.com/?uri=spotify:playlist:5KrDtqnhoJoY9d5RIYMXRP",
"pixie": "https://embed.spotify.com/?uri=spotify:playlist:79AOdu3ELUDHkDPJT1rXUt",
"focus": "https://embed.spotify.com/?uri=spotify:playlist:6fzw3GiLktfRKczD6sl6mT",
"polish trap": "https://embed.spotify.com/?uri=spotify:playlist:78dAycV2sXjUhhhCrmgalT",
"hip house": "https://embed.spotify.com/?uri=spotify:playlist:0CaVoV0ZC3aUxNSb8SoZVf",
"jazz pop": "https://embed.spotify.com/?uri=spotify:playlist:04AQGSIBVHZn3OTzLLZjlz",
"jazz funk": "https://embed.spotify.com/?uri=spotify:playlist:3djem4UfHRQUBeOMxtpY3p",
"old school thrash": "https://embed.spotify.com/?uri=spotify:playlist:7Mb1RVFEVwS1kOeMpbCWbR",
"tagalog rap": "https://embed.spotify.com/?uri=spotify:playlist:4Hx6fdHGxv9nOZgZShbekL",
"cumbia villera": "https://embed.spotify.com/?uri=spotify:playlist:2ikWCh2wOfp5XtENdqaAQC",
"drill": "https://embed.spotify.com/?uri=spotify:playlist:4cEyA0ViSmUTFKF8i3agLU",
"funk paulista": "https://embed.spotify.com/?uri=spotify:playlist:6YHx5ZIQqpfrxKEsw77EDU",
"spanish pop rock": "https://embed.spotify.com/?uri=spotify:playlist:6Z07gmQdxcSmwR1iVNK1Yk",
"deep underground hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0LCQjuYkhJFBP3ZSpBmvHB",
"trip hop": "https://embed.spotify.com/?uri=spotify:playlist:2wrc23l7JdQVcpPIcDGaed",
"christian rock": "https://embed.spotify.com/?uri=spotify:playlist:0l4beRwx17QIjP7kTciYUk",
"russian trap": "https://embed.spotify.com/?uri=spotify:playlist:2NweJbjBo0jbtRgYOalUDO",
"afropop": "https://embed.spotify.com/?uri=spotify:playlist:5vpvuv9xaddqd00dzpxTzg",
"electric blues": "https://embed.spotify.com/?uri=spotify:playlist:7EFp3Wiscy9r6DhBoOxmyT",
"partyschlager": "https://embed.spotify.com/?uri=spotify:playlist:4kO0iMQHG8HwbmkgBKIlOY",
"vapor twitch": "https://embed.spotify.com/?uri=spotify:playlist:4XyF8NB0VN7XR5rDHL2lMG",
"brazilian gospel": "https://embed.spotify.com/?uri=spotify:playlist:6Xxksk0PXng2x9zF30Yzg7",
"rock nacional brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:2VU7QQKSn6eIE2e9DY52dM",
"nu jazz": "https://embed.spotify.com/?uri=spotify:playlist:26PD3pjcSfPuKUDV1jgfX8",
"industrial rock": "https://embed.spotify.com/?uri=spotify:playlist:3YA1JuMxq4iJNRr1G4hilC",
"jazz": "https://embed.spotify.com/?uri=spotify:playlist:5EyFMotmvSfDAZ4hSdKrbx",
"rap espanol": "https://embed.spotify.com/?uri=spotify:playlist:6PyV0jFaVWhEKdjscMtiAU",
"mexican indie": "https://embed.spotify.com/?uri=spotify:playlist:2UmyDZbUjnhE6tuhf8e9Wa",
"cool jazz": "https://embed.spotify.com/?uri=spotify:playlist:3RtFvzIXD7ulUCXkWdIOWW",
"filter house": "https://embed.spotify.com/?uri=spotify:playlist:5oZMnQNApteFlWDTo0xrtb",
"french rock": "https://embed.spotify.com/?uri=spotify:playlist:6uL4zN0tryTmOsrhcknaIS",
"rap latina": "https://embed.spotify.com/?uri=spotify:playlist:6JWSHUaK7oIekxggExyj6T",
"post-screamo": "https://embed.spotify.com/?uri=spotify:playlist:0XeSjSOh2uwuysKcBqboqD",
"latin christian": "https://embed.spotify.com/?uri=spotify:playlist:2p0LqJK2o0uCq2COZJyhls",
"thrash metal": "https://embed.spotify.com/?uri=spotify:playlist:3UQbqTKIxehTFCdFyjEQUn",
"turkish rock": "https://embed.spotify.com/?uri=spotify:playlist:0aOQSNOuSE84kP4epEGVou",
"nu gaze": "https://embed.spotify.com/?uri=spotify:playlist:2gUFVgxO2AeWSFSmg2kQvl",
"irish rock": "https://embed.spotify.com/?uri=spotify:playlist:2CBHXjkBbHfiKcKIHesfbC",
"ska argentino": "https://embed.spotify.com/?uri=spotify:playlist:0sS9Esh4m1MZjtLlGRIQmB",
"la pop": "https://embed.spotify.com/?uri=spotify:playlist:7AqOmLV0JV4a3GpIU1qxbL",
"pop venezolano": "https://embed.spotify.com/?uri=spotify:playlist:0dYg5qMtoE1qT37H7YBNLf",
"post-disco": "https://embed.spotify.com/?uri=spotify:playlist:5iKvDdecBJSQ5Qg46MN135",
"pagode novo": "https://embed.spotify.com/?uri=spotify:playlist:3U903ICkXhjRoPgPrG4O1j",
"k-rap": "https://embed.spotify.com/?uri=spotify:playlist:0thomPcNswX7vGOyBvHxMQ",
"trap triste": "https://embed.spotify.com/?uri=spotify:playlist:1uE60pEQpaIgUT3T7Voloi",
"redneck": "https://embed.spotify.com/?uri=spotify:playlist:2KWsDttfIMjLq1rpyxTQX8",
"japanese teen pop": "https://embed.spotify.com/?uri=spotify:playlist:6Wz5IiVGjSDWQmMlPxHcjg",
"indie electropop": "https://embed.spotify.com/?uri=spotify:playlist:41997GIfsUgMnsPLFiuLeS",
"pop flamenco": "https://embed.spotify.com/?uri=spotify:playlist:5eXtMliOlZWHMcDDRkANhL",
"bebop": "https://embed.spotify.com/?uri=spotify:playlist:55s8gstHcaCyfU47mQgLrB",
"kentucky hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1jbjgJE4hBSSwfx5NjWc2j",
"socal pop punk": "https://embed.spotify.com/?uri=spotify:playlist:082daAvMUmkVEgkolt3wCw",
"anime score": "https://embed.spotify.com/?uri=spotify:playlist:2K3Gf8NozSaxXj5227J9tv",
"swedish electropop": "https://embed.spotify.com/?uri=spotify:playlist:33fyWhh6amFf9SQi1EILdm",
"deep new americana": "https://embed.spotify.com/?uri=spotify:playlist:0J8pO9hK5KnAFWaLE3oTfK",
"madchester": "https://embed.spotify.com/?uri=spotify:playlist:4S0dEwHY1tHedrYTB6O1Yi",
"houston rap": "https://embed.spotify.com/?uri=spotify:playlist:0pyHVjbjiyuutRjtP3hvNY",
"german underground rap": "https://embed.spotify.com/?uri=spotify:playlist:2IcKLRiUHpjhMMubZqderY",
"baton rouge rap": "https://embed.spotify.com/?uri=spotify:playlist:0F7mtdFDNN5fqlDuxWG8TM",
"piseiro": "https://embed.spotify.com/?uri=spotify:playlist:3r6u8ciy6JcrdCDXMwtC0v",
"southern rock": "https://embed.spotify.com/?uri=spotify:playlist:4T1ZiJC9fdryPOa47Pf3vl",
"tennessee hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0sDsNueIuqMP0aNLesjWMq",
"pop emo": "https://embed.spotify.com/?uri=spotify:playlist:3Gf8bbUuqd7zLFt4LrSLej",
"post-punk": "https://embed.spotify.com/?uri=spotify:playlist:20cUBDEbmqhNmklStbkQvL",
"cancion melodica": "https://embed.spotify.com/?uri=spotify:playlist:2dLBa2Id927DSbDX11R0h3",
"indonesian indie": "https://embed.spotify.com/?uri=spotify:playlist:5Wh14KMrdMwRzU4lU8Zc9z",
"future bass": "https://embed.spotify.com/?uri=spotify:playlist:0HL0ITC4buCPYJaJHqwbMm",
"swing": "https://embed.spotify.com/?uri=spotify:playlist:20CFvOMJgvNmysKxUH5GJV",
"swedish hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3NfxAsLjZmCpQIlytSFiMB",
"scandipop": "https://embed.spotify.com/?uri=spotify:playlist:0IyFLwxEtAB5jszehTpWFJ",
"canadian singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:2IBJxQyIykOBbtKZosjNvI",
"classic swedish pop": "https://embed.spotify.com/?uri=spotify:playlist:5sjIhYs9VdRLVRwQimhRq6",
"tejano": "https://embed.spotify.com/?uri=spotify:playlist:6cFjgaI6dLy1cM0HTKQq8Z",
"french indietronica": "https://embed.spotify.com/?uri=spotify:playlist:2himelMaFON7yDwQf9P8Kq",
"movie tunes": "https://embed.spotify.com/?uri=spotify:playlist:1gauLmjFqDP3iP7yKiJCHt",
"spanish rock": "https://embed.spotify.com/?uri=spotify:playlist:0tcS9Y1tCt0Ffh2CdTXybt",
"rumba": "https://embed.spotify.com/?uri=spotify:playlist:3BfEgQqVomK4wv9cYD2k6o",
"german metal": "https://embed.spotify.com/?uri=spotify:playlist:1Mcit79QvE6BdMXZ03eamN",
"traprun": "https://embed.spotify.com/?uri=spotify:playlist:0cD79tL7mj2p4xTSrk1se3",
"deep indian pop": "https://embed.spotify.com/?uri=spotify:playlist:1qFV1e7g15fkc4Qzj4kGIK",
"uk metalcore": "https://embed.spotify.com/?uri=spotify:playlist:65cw6LKvXQFFHR2iwNjZHY",
"jam band": "https://embed.spotify.com/?uri=spotify:playlist:1z1LfuAoQQDRKLOyVQvaRa",
"korean r&b": "https://embed.spotify.com/?uri=spotify:playlist:2TJHOlrTUoLMHs9CTyxN9n",
"jazz fusion": "https://embed.spotify.com/?uri=spotify:playlist:3GomZqnwKeecLnI3sOkoEq",
"complextro": "https://embed.spotify.com/?uri=spotify:playlist:3N0R1GcrhHAvCmSSMJumJT",
"etherpop": "https://embed.spotify.com/?uri=spotify:playlist:3eoGAwNztSSx7Pi6dC6GFn",
"christian pop": "https://embed.spotify.com/?uri=spotify:playlist:4LR7zJ6HkhAJFhQm4eTfqS",
"punk blues": "https://embed.spotify.com/?uri=spotify:playlist:0pUItxZh4LNpvkkM22kBTj",
"brazilian reggae": "https://embed.spotify.com/?uri=spotify:playlist:7v4hGOiOxpMW8fldbY63kd",
"rap conciencia": "https://embed.spotify.com/?uri=spotify:playlist:6vfVdOzLUYpG9z9wE0Icjx",
"alternative country": "https://embed.spotify.com/?uri=spotify:playlist:5BmMjQp8OwPGdg7OOINCHm",
"vocal house": "https://embed.spotify.com/?uri=spotify:playlist:5r4gdnighI2ujQqfCwtHlU",
"dominican pop": "https://embed.spotify.com/?uri=spotify:playlist:4GMCrTNjDoL2W3DzqIkbOn",
"jazz blues": "https://embed.spotify.com/?uri=spotify:playlist:4ehHChcQBZTZ0kP9CkHdzc",
"nigerian pop": "https://embed.spotify.com/?uri=spotify:playlist:7MwdQNmdKjQx3h1p3vP2eZ",
"pop argentino": "https://embed.spotify.com/?uri=spotify:playlist:2dHEwheLsfq6X3AfIH1AnJ",
"rap marseille": "https://embed.spotify.com/?uri=spotify:playlist:5nMh3IcKI0h3bfeiwdoUrW",
"chicago drill": "https://embed.spotify.com/?uri=spotify:playlist:3FeDgGoUiDRzSBXexOs3gZ",
"turkish folk": "https://embed.spotify.com/?uri=spotify:playlist:23w9QtY1mUO3j1sij0NORp",
"neon pop punk": "https://embed.spotify.com/?uri=spotify:playlist:52NjfVJ2mAEaeOorFvrGvk",
"panamanian pop": "https://embed.spotify.com/?uri=spotify:playlist:0nAbpWAj2ULBbTbdE463GO",
"hyperpop": "https://embed.spotify.com/?uri=spotify:playlist:7DrJ92Lc9UaVB1rKM2UGsg",
"pop house": "https://embed.spotify.com/?uri=spotify:playlist:04ugFARyXFS9iQaiHjes6i",
"classic canadian rock": "https://embed.spotify.com/?uri=spotify:playlist:7kkQw6YiSBhHmKK1B9ePYq",
"bedroom soul": "https://embed.spotify.com/?uri=spotify:playlist:5YhnF0wwxsNlZzyFbMpOzG",
"moombahton": "https://embed.spotify.com/?uri=spotify:playlist:7iszolrnuUqc01LQaBqqII",
"double drumming": "https://embed.spotify.com/?uri=spotify:playlist:5d14ZrDa5uxfbseFCO9KJI",
"cumbia sonidera": "https://embed.spotify.com/?uri=spotify:playlist:5vdpHqiubY4Vkr4nLUbWY1",
"wrestling": "https://embed.spotify.com/?uri=spotify:playlist:4SHiHmOhFaUjBiCN9kj2qM",
"meditation": "https://embed.spotify.com/?uri=spotify:playlist:1RJKluktWr9Dh7fXhhRkHV",
"polish pop": "https://embed.spotify.com/?uri=spotify:playlist:40uOIq5lmbAApQTlleiVp0",
"lullaby": "https://embed.spotify.com/?uri=spotify:playlist:1HF6J83A0lrauLpdJ9N4Nz",
"memphis hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1rmskknWn4KPtEC6PHh2Rd",
"minimal techno": "https://embed.spotify.com/?uri=spotify:playlist:68uxlFAvnITCyQs0U8qr6n",
"gauze pop": "https://embed.spotify.com/?uri=spotify:playlist:6gaLUOiIgrnSFt2qmmUIMr",
"norwegian indie": "https://embed.spotify.com/?uri=spotify:playlist:1W5VvMDlZm8pViaMFAcctc",
"groove metal": "https://embed.spotify.com/?uri=spotify:playlist:5UYSZ8nVmn0iaIelrf9Oe8",
"ska": "https://embed.spotify.com/?uri=spotify:playlist:2aKMOs9FxzuCX6kdylLX94",
"swedish trap pop": "https://embed.spotify.com/?uri=spotify:playlist:6U6G6gOdXrrSIvQEsM4fsf",
"schlager": "https://embed.spotify.com/?uri=spotify:playlist:5GtYXXydQZxdFlkIIvCHBW",
"early music": "https://embed.spotify.com/?uri=spotify:playlist:0K86fmE0c0SFgz9GpwhwLm",
"uk alternative hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1KJB07h1cyZlw6I6sHAide",
"pop reggaeton": "https://embed.spotify.com/?uri=spotify:playlist:7dWozFDD5uTTmEFMcQtGZj",
"broadway": "https://embed.spotify.com/?uri=spotify:playlist:1n5lZH4Z7y6R254fFzL04j",
"classify": "https://embed.spotify.com/?uri=spotify:playlist:6E9uHw2nQR9XPP4DGrBUcl",
"chamber psych": "https://embed.spotify.com/?uri=spotify:playlist:6rirvdbul7rDunT5SP5F4m",
"shiver pop": "https://embed.spotify.com/?uri=spotify:playlist:1FcWxTM72potsWHiPQKmZC",
"hamburg hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1TbWLNDzbjd4YlKXU2KaKL",
"uk alternative pop": "https://embed.spotify.com/?uri=spotify:playlist:5sD1aSVv0KWgbGHo8GYKMC",
"uk drill": "https://embed.spotify.com/?uri=spotify:playlist:685ydTa5UXcEU5NZbLJCy7",
"ninja": "https://embed.spotify.com/?uri=spotify:playlist:3ZqWgDb0L6un0twcnnuL80",
"white noise": "https://embed.spotify.com/?uri=spotify:playlist:7j5QgrOCOptczCKI74BK39",
"baroque": "https://embed.spotify.com/?uri=spotify:playlist:4vmfJ9pJfFyeo1s5Z0g9B7",
"canadian indie": "https://embed.spotify.com/?uri=spotify:playlist:4mw6VuwMrkxqVkkjrmkGAF",
"anti-folk": "https://embed.spotify.com/?uri=spotify:playlist:1SXOzFKlMx7ODmxI1jnxux",
"afroswing": "https://embed.spotify.com/?uri=spotify:playlist:5cxxxlEnpCUjwB3YdHMYEd",
"melbourne bounce international": "https://embed.spotify.com/?uri=spotify:playlist:3hVFk3uqdqUey1yX2fzSXr",
"classic country pop": "https://embed.spotify.com/?uri=spotify:playlist:6lOCvTH6vW5Jc7oyryNom4",
"electro": "https://embed.spotify.com/?uri=spotify:playlist:4oBAlPMMM8HqTd9ee6GiRr",
"deep euro house": "https://embed.spotify.com/?uri=spotify:playlist:36ElXYG8xeWVQFuZr0Puvy",
"new age": "https://embed.spotify.com/?uri=spotify:playlist:3hDWEELdaUjBONwNB2jMGV",
"bubblegrunge": "https://embed.spotify.com/?uri=spotify:playlist:0JrzRKCHxv8xnuAvMk5Rnd",
"microhouse": "https://embed.spotify.com/?uri=spotify:playlist:6FbDQuTcGT0IoZCtsbCISv",
"tech house": "https://embed.spotify.com/?uri=spotify:playlist:7HxEKL4NF7ZKakfTZiekTr",
"industrial": "https://embed.spotify.com/?uri=spotify:playlist:77sv0mFP4YSZgApxcqjaOb",
"thai pop": "https://embed.spotify.com/?uri=spotify:playlist:3UgbkYQnqsue0LbbcUUCDN",
"reading": "https://embed.spotify.com/?uri=spotify:playlist:6AMYqzWEHpzHQspdGpBH5s",
"perreo": "https://embed.spotify.com/?uri=spotify:playlist:3kKTNWq50Aysbs5ammCarH",
"dutch house": "https://embed.spotify.com/?uri=spotify:playlist:2A2qSpDa4K8gD55D7sDJe7",
"german alternative rap": "https://embed.spotify.com/?uri=spotify:playlist:3jzFKphMRkD5TLxOXlucXT",
"kindermusik": "https://embed.spotify.com/?uri=spotify:playlist:7iRtqaM0fu2Ip8GzzceQzF",
"arabesk": "https://embed.spotify.com/?uri=spotify:playlist:4Pgl4JWg99RspoFbmSjq6P",
"cantopop": "https://embed.spotify.com/?uri=spotify:playlist:6h7Jr2zbuBSNKAzajJ7BvD",
"oklahoma country": "https://embed.spotify.com/?uri=spotify:playlist:4swO9BLJdUIGuNJii0IXLI",
"celtic rock": "https://embed.spotify.com/?uri=spotify:playlist:35Lg9T9VJjvAQRdetQGtKS",
"drum and bass": "https://embed.spotify.com/?uri=spotify:playlist:18b0DBiqVtRuj34OKPCgj6",
"big beat": "https://embed.spotify.com/?uri=spotify:playlist:370tEYE4lZui1vrufdq7xy",
"chilean rock": "https://embed.spotify.com/?uri=spotify:playlist:5ALQKwz3D9lznT20eEIUTk",
"taiwan pop": "https://embed.spotify.com/?uri=spotify:playlist:33blltDYieR1hn462m5JqR",
"afrofuturism": "https://embed.spotify.com/?uri=spotify:playlist:2w4rahctwfHuu3YFP8lcFl",
"electro latino": "https://embed.spotify.com/?uri=spotify:playlist:1sD9vBSHzNC8d30hT5Xg3m",
"antiviral pop": "https://embed.spotify.com/?uri=spotify:playlist:6vGBafdEMRFhPiatbPLfjw",
"japanese alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:4tpLmmkAvbRGzP3wMpYCdX",
"j-pixie": "https://embed.spotify.com/?uri=spotify:playlist:5SWKs0Pa7zEtc1jVKmmFDs",
"tamil pop": "https://embed.spotify.com/?uri=spotify:playlist:1n837Vzu2Mtk4H1vBYA3m3",
"shoegaze": "https://embed.spotify.com/?uri=spotify:playlist:5ydNNBQbwQJuhmcxyo8K1f",
"soul jazz": "https://embed.spotify.com/?uri=spotify:playlist:51YToRmnFC3U4iPj6LgHgF",
"thai indie rock": "https://embed.spotify.com/?uri=spotify:playlist:1LkvG5mQgD9xiroaVR5PFl",
"progressive trance": "https://embed.spotify.com/?uri=spotify:playlist:3LfgRDV6HceI9exDCtTJo3",
"uplifting trance": "https://embed.spotify.com/?uri=spotify:playlist:2bV5j3UH5k9rMxJywzTYKu",
"lo-fi chill": "https://embed.spotify.com/?uri=spotify:playlist:12bxvDyycP9jNYaYKK57DO",
"german drill": "https://embed.spotify.com/?uri=spotify:playlist:6khrBfCWyR4y6bHTZt7Qo9",
"funk pop": "https://embed.spotify.com/?uri=spotify:playlist:2R2YtEbMWrq5u7Pu3TLKRa",
"contemporary vocal jazz": "https://embed.spotify.com/?uri=spotify:playlist:3JvgYk6ZM1mwWViJpxphml",
"minnesota hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3ZPBThiaZ0jSMPerPHpMwd",
"power pop": "https://embed.spotify.com/?uri=spotify:playlist:0BdTgPWKVq5tZmPFAVSN2J",
"irish pop": "https://embed.spotify.com/?uri=spotify:playlist:0aMVUw2FEVxBCFUZVxTt5u",
"japanese singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:2XKIPP83gL3CAONT0n5ZmT",
"bass house": "https://embed.spotify.com/?uri=spotify:playlist:5ITCoz5fDeGlbKyNmwKXoG",
"musica popular colombiana": "https://embed.spotify.com/?uri=spotify:playlist:0Srh9dNBtSw4FRAHozAUqj",
"japanese chillhop": "https://embed.spotify.com/?uri=spotify:playlist:0LiL4uxTI4oq6hSvmCkVe0",
"reggae en espanol": "https://embed.spotify.com/?uri=spotify:playlist:672uAsamKiPJti4m4EdETY",
"blues": "https://embed.spotify.com/?uri=spotify:playlist:7qACZGMjyo64TdUdKAegjp",
"modern blues": "https://embed.spotify.com/?uri=spotify:playlist:73Jxzf17MpBz7xI7iker8R",
"classical era": "https://embed.spotify.com/?uri=spotify:playlist:4HAbdPTjKgU8GUHRsaCxSU",
"epicore": "https://embed.spotify.com/?uri=spotify:playlist:6L5DYqEAWfLMEb6szUJpe4",
"progressive metal": "https://embed.spotify.com/?uri=spotify:playlist:74RFwHMUEVXkqK2KeeIMPl",
"memphis soul": "https://embed.spotify.com/?uri=spotify:playlist:01NiS0JyBqiBNNSZIUP1Xt",
"uk post-punk": "https://embed.spotify.com/?uri=spotify:playlist:0PdixUwE2t9E4ehH6TaTyi",
"basshall": "https://embed.spotify.com/?uri=spotify:playlist:5rPMSk9umM8sDDck6ZMADh",
"oakland hip hop": "https://embed.spotify.com/?uri=spotify:playlist:4Uewmd4GsCYQXttOgHS0Bi",
"alternative emo": "https://embed.spotify.com/?uri=spotify:playlist:4RZ8ejso7uNp2Yz9DMqpVx",
"german cloud rap": "https://embed.spotify.com/?uri=spotify:playlist:1rL1br6e5ksgcTIkgRLEiF",
"modern folk rock": "https://embed.spotify.com/?uri=spotify:playlist:4cF62RlGhLrHX5mEftPnKy",
"belgian edm": "https://embed.spotify.com/?uri=spotify:playlist:3YjCK5F0D78d0WXHcwQ7tq",
"salsa puertorriquena": "https://embed.spotify.com/?uri=spotify:playlist:4bCkN6aIITHJ5ZQUjEUxB6",
"neo-synthpop": "https://embed.spotify.com/?uri=spotify:playlist:2U7wEb4EEDbiAs3CCOoUfn",
"protopunk": "https://embed.spotify.com/?uri=spotify:playlist:252DtQnn5XzYtKs93VjCKE",
"early romantic era": "https://embed.spotify.com/?uri=spotify:playlist:3Vt17G94M85heL0MgOePc6",
"classic bollywood": "https://embed.spotify.com/?uri=spotify:playlist:0JoynXyEsqFyxTn9NTZkFW",
"afro dancehall": "https://embed.spotify.com/?uri=spotify:playlist:1KEVi9iz4neinmHtysrz7A",
"disco house": "https://embed.spotify.com/?uri=spotify:playlist:7tW3eTmzzYNNyEmi9qHdQC",
"australian psych": "https://embed.spotify.com/?uri=spotify:playlist:3qC7RPr0QzkFKAE1nuSAx4",
"glitchcore": "https://embed.spotify.com/?uri=spotify:playlist:0nAwOSVQ19qbswrjPdmQkq",
"vancouver indie": "https://embed.spotify.com/?uri=spotify:playlist:2BsP4wBGZt4mpY435CfQGR",
"irish singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:67ljvMZzzG7KNJkCH7hY6z",
"world": "https://embed.spotify.com/?uri=spotify:playlist:6woVbmGys7FH3bmiLcwKZm",
"speedrun": "https://embed.spotify.com/?uri=spotify:playlist:5T9buJg2Oo1S1Surr2cJrx",
"funk consciente": "https://embed.spotify.com/?uri=spotify:playlist:1pYXwb6K11YUZWvulG8LfM",
"pagode baiano": "https://embed.spotify.com/?uri=spotify:playlist:6huww36GD6XDSDtqJg2dip",
"finnish dance pop": "https://embed.spotify.com/?uri=spotify:playlist:18sKpIGOaFlR5256AqCh2E",
"pop rock brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:2ZIZY6WFbq8yAf7RCzFPrE",
"turkish alt pop": "https://embed.spotify.com/?uri=spotify:playlist:7u11wOJGQMZuMQufJB5hYG",
"dangdut": "https://embed.spotify.com/?uri=spotify:playlist:3xpkyLuyJI7bruUh1xtuea",
"uk funky": "https://embed.spotify.com/?uri=spotify:playlist:4lK54lu5nxD3iMlCXMIQwx",
"latin jazz": "https://embed.spotify.com/?uri=spotify:playlist:3bhnRBlvTikmxpW50jBaIZ",
"canadian metal": "https://embed.spotify.com/?uri=spotify:playlist:5gZ3OHKBftwK36rncggUxx",
"crunk": "https://embed.spotify.com/?uri=spotify:playlist:2bfQBLvjoloMK1VoWFDimL",
"russian rock": "https://embed.spotify.com/?uri=spotify:playlist:13FUMh8s4eHh9QaTaiRLfE",
"turkish jazz": "https://embed.spotify.com/?uri=spotify:playlist:2XWuLY8J7ViTQ7Gl3ZV9KV",
"finnish pop": "https://embed.spotify.com/?uri=spotify:playlist:3rjPCrrCjMZwWDlAIRu44q",
"post-hardcore": "https://embed.spotify.com/?uri=spotify:playlist:4350ojbUlkGhZ4bYKREy3A",
"late romantic era": "https://embed.spotify.com/?uri=spotify:playlist:7e68yBvjBB80O77iLiVt3l",
"nu disco": "https://embed.spotify.com/?uri=spotify:playlist:0SSA0QK7yBpyZngyAYsp6w",
"rawstyle": "https://embed.spotify.com/?uri=spotify:playlist:1EICh4qNolTgW5VnUDpXg7",
"german indie": "https://embed.spotify.com/?uri=spotify:playlist:4bpLvrAQpvWAZ9lJDDYfbl",
"symphonic metal": "https://embed.spotify.com/?uri=spotify:playlist:5sodadTxPhNX9LAxyd03DJ",
"modern reggae": "https://embed.spotify.com/?uri=spotify:playlist:3B7t8HFv1PowgvPsLq6Qbf",
"russian alt pop": "https://embed.spotify.com/?uri=spotify:playlist:3NPyEuRqag5aATW5ckpX0J",
"swedish alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:42I35nX6LVqu5PqNj8824b",
"pop lgbtq+ brasileira": "https://embed.spotify.com/?uri=spotify:playlist:5LbuqcNO4ieuVBhPGEhpem",
"liquid funk": "https://embed.spotify.com/?uri=spotify:playlist:5mu96o6F1pWzA5C9R8LAOm",
"rap napoletano": "https://embed.spotify.com/?uri=spotify:playlist:0OCPvoUuknhRAe1x0HFI3C",
"background jazz": "https://embed.spotify.com/?uri=spotify:playlist:7Ifye2q49cs6RDXTbQxJcq",
"vallenato": "https://embed.spotify.com/?uri=spotify:playlist:3r3Yyzb9UUcuWpjd9Y0nfj",
"nyc pop": "https://embed.spotify.com/?uri=spotify:playlist:4CfyHGpt8qPlLXlstcE2Wh",
"soul blues": "https://embed.spotify.com/?uri=spotify:playlist:2KMDVWnnYTOUjqt8hH2xXC",
"christmas instrumental": "https://embed.spotify.com/?uri=spotify:playlist:61mWpz3ZqIBLOd3MxbjWFR",
"argentine indie": "https://embed.spotify.com/?uri=spotify:playlist:5Phw9uzB08eYDwX5gFRFVy",
"political hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1JG2BtWHQA3XMqun2bsB2k",
"london rap": "https://embed.spotify.com/?uri=spotify:playlist:2sAetSf2QJCdtJtEXi0MWR",
"post-romantic era": "https://embed.spotify.com/?uri=spotify:playlist:1tkjrVDJx0MwmNsoV5lgPr",
"queer country": "https://embed.spotify.com/?uri=spotify:playlist:5lAp13nSaA7eHafwqV5ilp",
"dubstep": "https://embed.spotify.com/?uri=spotify:playlist:0ZYFF9tPuPq2YNMRNhQZJt",
"acid rock": "https://embed.spotify.com/?uri=spotify:playlist:3H6YJ47QOQiC74hZNVUU2f",
"old school hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6MjdCkcY5tUfadaakBRINy",
"neue deutsche harte": "https://embed.spotify.com/?uri=spotify:playlist:6WeDF6IYytZmoiLZaSnhgp",
"pinoy rock": "https://embed.spotify.com/?uri=spotify:playlist:5JdttIYzORolkaZOiAmaDN",
"melodic hardcore": "https://embed.spotify.com/?uri=spotify:playlist:1zpGcI2DcOjVa2vbtU98cO",
"pinoy hip hop": "https://embed.spotify.com/?uri=spotify:playlist:4h1t1NUOA1LuIz8WW0w32H",
"bachata dominicana": "https://embed.spotify.com/?uri=spotify:playlist:6ZOErPbFr6wWQ687g0TQGB",
"musica de fondo": "https://embed.spotify.com/?uri=spotify:playlist:33pnAlQ3n096s4W1XMnrNf",
"swedish idol pop": "https://embed.spotify.com/?uri=spotify:playlist:70jdWG9sLb0vAWuAXuiDbX",
"oxford indie": "https://embed.spotify.com/?uri=spotify:playlist:1YvOWmrMWjSOmaXHo5RCnZ",
"nu-cumbia": "https://embed.spotify.com/?uri=spotify:playlist:6dALa1NCsiiQtQrLGjFgaT",
"arkansas country": "https://embed.spotify.com/?uri=spotify:playlist:58UKNHdZKjKa9q3gPPwSsC",
"torch song": "https://embed.spotify.com/?uri=spotify:playlist:7MaOqNrbYKlp4LD81URIsG",
"ska punk": "https://embed.spotify.com/?uri=spotify:playlist:3gCEWVVAL0dTb6g44qqvkN",
"roots worship": "https://embed.spotify.com/?uri=spotify:playlist:7iGdViGFlFJhmtjga5qhMx",
"australian electropop": "https://embed.spotify.com/?uri=spotify:playlist:6TEh7sGZj65kb1wKoZMkSU",
"water": "https://embed.spotify.com/?uri=spotify:playlist:51WjrD4DXN7XvmPciUip71",
"progressive bluegrass": "https://embed.spotify.com/?uri=spotify:playlist:2ychGMsKkWCqjgkgNHommE",
"swedish gangsta rap": "https://embed.spotify.com/?uri=spotify:playlist:6HO4BNXiFyRCFlgbnyPQkD",
"celtic": "https://embed.spotify.com/?uri=spotify:playlist:652MEBjQfhjqwfoKrlaUK6",
"canadian electronic": "https://embed.spotify.com/?uri=spotify:playlist:0x6JnrpfyrnhzXzMZXSGe7",
"brooklyn indie": "https://embed.spotify.com/?uri=spotify:playlist:78MPGFVq0C4yrfvgxZKngM",
"classic j-pop": "https://embed.spotify.com/?uri=spotify:playlist:0dJjpfWSlJj9121L0WTUoU",
"death metal": "https://embed.spotify.com/?uri=spotify:playlist:4ykSr52Ff3ysihmAO0z1Dw",
"sound": "https://embed.spotify.com/?uri=spotify:playlist:0uhfs6RxB1VkLp17K35Ssh",
"british singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:6lEM8mYvo3M5ntO3FAiIvt",
"hard bop": "https://embed.spotify.com/?uri=spotify:playlist:3KIoIajdvsFRWMYN3T5Fa5",
"phonk": "https://embed.spotify.com/?uri=spotify:playlist:3qxSuTNp8RQ3QAnsQkMan4",
"cartoon": "https://embed.spotify.com/?uri=spotify:playlist:47E4xm9bQeseKh6tSasQqG",
"rap dominicano": "https://embed.spotify.com/?uri=spotify:playlist:2WfnBDeBCW7cPiFc1WkPuJ",
"v-pop": "https://embed.spotify.com/?uri=spotify:playlist:6TtiOm4Vf5wD8gPs1V4pQI",
"frauenrap": "https://embed.spotify.com/?uri=spotify:playlist:4OnbZkownuQYWGsJ3pvWxf",
"venezuelan hip hop": "https://embed.spotify.com/?uri=spotify:playlist:48ZAg8gvBviwTPsXN4aIfG",
"nashville sound": "https://embed.spotify.com/?uri=spotify:playlist:4ogqKBfmZLAiIUkpc8FPTz",
"flamenco urbano": "https://embed.spotify.com/?uri=spotify:playlist:21XVVIqOYYoX4krT44mMiL",
"speed metal": "https://embed.spotify.com/?uri=spotify:playlist:76RB4cPFZIK8WBomKSEIlQ",
"stoner rock": "https://embed.spotify.com/?uri=spotify:playlist:6rhKHVL7MpASDhCtuY3ISy",
"latin talent show": "https://embed.spotify.com/?uri=spotify:playlist:1L1Hmf2PkeZbiiQbgD93hC",
"trova": "https://embed.spotify.com/?uri=spotify:playlist:6AsYWsnau4HpWHzxyNoA1a",
"operatic pop": "https://embed.spotify.com/?uri=spotify:playlist:2hfzjrxv05ynWI0LLxqpjq",
"danish hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2Ye9vt7btK1lJgJ7zw6xRJ",
"organic house": "https://embed.spotify.com/?uri=spotify:playlist:73NvmzII2ExqKUR9iliJdQ",
"post-punk argentina": "https://embed.spotify.com/?uri=spotify:playlist:2Hleh47rixMBxvNnqmx3hT",
"disney": "https://embed.spotify.com/?uri=spotify:playlist:2wVSco9FZlWS9iW6OxI9Ia",
"german baroque": "https://embed.spotify.com/?uri=spotify:playlist:03zLen1gxr088za4E2yfG6",
"czsk hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3d5jCAj8KI62xVo567NEGn",
"rome indie": "https://embed.spotify.com/?uri=spotify:playlist:1zkGa0efUtOsXNKdbm1YhS",
"swedish metal": "https://embed.spotify.com/?uri=spotify:playlist:2VLJNrld3b2lqbb0N4mDZs",
"belgian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6BxDibVSpcABeoBBo1vToA",
"pop romantico": "https://embed.spotify.com/?uri=spotify:playlist:5aT36SOb1mkA0tDDjXKlS0",
"smooth jazz": "https://embed.spotify.com/?uri=spotify:playlist:4GMYsnPRt6GT3VARNJQeKt",
"azontobeats": "https://embed.spotify.com/?uri=spotify:playlist:0BFlqvOTWhikSH6YmnugCs",
"nederpop": "https://embed.spotify.com/?uri=spotify:playlist:4jad2Rm1ff78yGzm3XTZKC",
"cumbia chilena": "https://embed.spotify.com/?uri=spotify:playlist:4DxBnbmJesJ6kIOrB7My9b",
"anthem emo": "https://embed.spotify.com/?uri=spotify:playlist:1dHm6fhlORhY2O1v6aO4fc",
"swamp rock": "https://embed.spotify.com/?uri=spotify:playlist:0c3XM6W62rmdSfWs7uzpRz",
"danspunk": "https://embed.spotify.com/?uri=spotify:playlist:7Ew6UU6dhWHNs8f7qr9eA5",
"modern salsa": "https://embed.spotify.com/?uri=spotify:playlist:01jM8RPDlNtIvBkOsRbdMR",
"classic hardstyle": "https://embed.spotify.com/?uri=spotify:playlist:6JyqZHLr7ACv0AVqpYrXfj",
"vocaloid": "https://embed.spotify.com/?uri=spotify:playlist:3gL0B5dJ4WPM0PmhRjqcQU",
"australian alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:62Mjfl6ctnwHXAgiT6cQwI",
"sertanejo tradicional": "https://embed.spotify.com/?uri=spotify:playlist:5yWEBJMpp4zuGt83GYOyHE",
"new jersey rap": "https://embed.spotify.com/?uri=spotify:playlist:4zRssuqXi9x60JgHq5oypS",
"indie jazz": "https://embed.spotify.com/?uri=spotify:playlist:6LgnHN3mGCfSTnYy7Cd81C",
"christian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:19MzV9T4UTnjZdQEWL3xFe",
"teen pop": "https://embed.spotify.com/?uri=spotify:playlist:5VnHdgsAhzWNkd29Rv9ErH",
"dreamo": "https://embed.spotify.com/?uri=spotify:playlist:7j0Fio78ghmrM92FrgSSFR",
"neo classical metal": "https://embed.spotify.com/?uri=spotify:playlist:6IzFj8GilAEayVRo4jBfM0",
"spanish indie pop": "https://embed.spotify.com/?uri=spotify:playlist:6s8I7kVZ8phbFuXcFJmaQV",
"modern hard rock": "https://embed.spotify.com/?uri=spotify:playlist:2derYIaJKEEwMLCcEOYEcI",
"dub": "https://embed.spotify.com/?uri=spotify:playlist:1nAMu3VI1913Bl8P6joGdE",
"ambient": "https://embed.spotify.com/?uri=spotify:playlist:6CIyPj34GTpAkNwoWToLNT",
"deep turkish pop": "https://embed.spotify.com/?uri=spotify:playlist:4ML7JSFmkkJipKldJqZGbN",
"polish alternative": "https://embed.spotify.com/?uri=spotify:playlist:4Ilk2BZa7OWZziZgcBAQlR",
"british blues": "https://embed.spotify.com/?uri=spotify:playlist:5gYoPWpfoYkFxdS7a15WBO",
"r&b brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:6oJ7aTA1gwk4WaPTB4l5oo",
"israeli pop": "https://embed.spotify.com/?uri=spotify:playlist:53x6LAhXxhWxhV2TAPgw4u",
"russian dance pop": "https://embed.spotify.com/?uri=spotify:playlist:01XFN44RI7293VZIugv49n",
"aussietronica": "https://embed.spotify.com/?uri=spotify:playlist:6v4XJKL42tbcrzbN5bVyH9",
"visual kei": "https://embed.spotify.com/?uri=spotify:playlist:2zxjp4qMAoiRr8xY1Uq1SW",
"indie surf": "https://embed.spotify.com/?uri=spotify:playlist:6nLRnyAmEOi7OeEddElTgo",
"classic schlager": "https://embed.spotify.com/?uri=spotify:playlist:4bMTSiI4AC7Mp0TCOMis7A",
"albanian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3ihgsFVkN3qG7KnEXoJMHf",
"sunshine pop": "https://embed.spotify.com/?uri=spotify:playlist:4WGe8j09ND0yhNGN2LRuD7",
"gymcore": "https://embed.spotify.com/?uri=spotify:playlist:4iJOZzUyARH8EpZngrkiBm",
"gothic metal": "https://embed.spotify.com/?uri=spotify:playlist:5If0ljSv0MPkrJJr9t75mY",
"forro de favela": "https://embed.spotify.com/?uri=spotify:playlist:6rgJa4JpxjExztCelf11Fd",
"intelligent dance music": "https://embed.spotify.com/?uri=spotify:playlist:3P9lEX8RzKkD3hNVvnoMc5",
"piano cover": "https://embed.spotify.com/?uri=spotify:playlist:6yGAwVDOmgKVKM4XDLNoVR",
"russian dance": "https://embed.spotify.com/?uri=spotify:playlist:0UOoeghqStZk0brm8Ozz5L",
"finnish hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1YGvJM20VrskrnSGuT0V2W",
"psychedelic hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2IQajrWbgM5MH4kKFLe7AB",
"ambient worship": "https://embed.spotify.com/?uri=spotify:playlist:5W6bxdaey4mnoC1QVxg61t",
"supergroup": "https://embed.spotify.com/?uri=spotify:playlist:1s2jrVIrwTByHfgArNRd4F",
"lovers rock": "https://embed.spotify.com/?uri=spotify:playlist:7KNEp9goFIQIuIwqFDFgTg",
"chicano rap": "https://embed.spotify.com/?uri=spotify:playlist:2Tc7Rt8asvPRsbBhe7vKDr",
"electra": "https://embed.spotify.com/?uri=spotify:playlist:4vnhpAi5S0LSNQfzWSpkZs",
"hawaiian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:0CqFlDgsIr4aEcUAbxbIsu",
"euphoric hardstyle": "https://embed.spotify.com/?uri=spotify:playlist:7kUeKVMrA3eMZNP4p8HKVi",
"german soundtrack": "https://embed.spotify.com/?uri=spotify:playlist:0JC0SvamjkERHSSVifLM5N",
"tekk": "https://embed.spotify.com/?uri=spotify:playlist:7yNCersDJdYn5S4OgsNweg",
"canadian punk": "https://embed.spotify.com/?uri=spotify:playlist:5OcvKHhsBhDH7rSq7ZrhUK",
"zolo": "https://embed.spotify.com/?uri=spotify:playlist:1HDK9LHAXjMQEbEhh9Lbfa",
"melodic death metal": "https://embed.spotify.com/?uri=spotify:playlist:7lGaIZyXooFl0HIxvBxlNY",
"birmingham metal": "https://embed.spotify.com/?uri=spotify:playlist:1zBisMFE9VWtdXHzBxWD2d",
"japanese soundtrack": "https://embed.spotify.com/?uri=spotify:playlist:1SDsQL5zFGmnZy4w7mk1ub",
"south carolina hip hop": "https://embed.spotify.com/?uri=spotify:playlist:06wMSt5MVYSyl5RHaYZF0J",
"melodic dubstep": "https://embed.spotify.com/?uri=spotify:playlist:0lLw4zuyAnF3H6LoeSngXb",
"shamanic": "https://embed.spotify.com/?uri=spotify:playlist:2gmlwXEHmmvxTG6JZN5uBQ",
"swedish trap": "https://embed.spotify.com/?uri=spotify:playlist:2ID0zU2K42h2pRR6yZqmDB",
"chinese indie": "https://embed.spotify.com/?uri=spotify:playlist:0wYpNflDnwSC3OZqdrQCBt",
"turbo folk": "https://embed.spotify.com/?uri=spotify:playlist:2o4kwAlkwGTYEijq94GsyS",
"j-rap": "https://embed.spotify.com/?uri=spotify:playlist:7x1NTWOVz2GiQ4lrGbpH4e",
"pop rap brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:0Ud1B5OYxleiuspbBXZI2t",
"french reggae": "https://embed.spotify.com/?uri=spotify:playlist:47v1NcKNyzVdhTWdCtl8HE",
"hi-nrg": "https://embed.spotify.com/?uri=spotify:playlist:3Bf2Oreyh9819D3Mgf3tnK",
"modern power pop": "https://embed.spotify.com/?uri=spotify:playlist:0h0nzdXjZTmo4k32f24pVt",
"lo-fi indie": "https://embed.spotify.com/?uri=spotify:playlist:6bLWoiHrkb8pP82YGCqCHi",
"jazz trumpet": "https://embed.spotify.com/?uri=spotify:playlist:1KauhpfXtTbEgYVi4d5rsD",
"christian indie": "https://embed.spotify.com/?uri=spotify:playlist:3l8CtYFuLlRkrh6zCBODwp",
"experimental": "https://embed.spotify.com/?uri=spotify:playlist:13rgRSFVuyKQ0YtrZDJD6R",
"dutch trance": "https://embed.spotify.com/?uri=spotify:playlist:2BPocNoK7QF8mRuTdRd2Ph",
"belgian pop": "https://embed.spotify.com/?uri=spotify:playlist:08m9824rPzzzSV8kUNqaJ7",
"experimental pop": "https://embed.spotify.com/?uri=spotify:playlist:0MS8uaf4VjVPDb5e8LJVpm",
"pub rock": "https://embed.spotify.com/?uri=spotify:playlist:05hKvjsFjE7g3Pnk7Wxvwe",
"rebel blues": "https://embed.spotify.com/?uri=spotify:playlist:44fli7rZ73DG4LU9AVKl8W",
"chillstep": "https://embed.spotify.com/?uri=spotify:playlist:22pjJtfW7sA4PiaruUB5yN",
"dinner jazz": "https://embed.spotify.com/?uri=spotify:playlist:6KAn1uGwrupBX9KI6jOT5N",
"reggae rock": "https://embed.spotify.com/?uri=spotify:playlist:0CktkOo3GxodXvz4fXJ5Ld",
"turkish alternative rock": "https://embed.spotify.com/?uri=spotify:playlist:6jBRajLOpvvOZYDDAnfaPg",
"alabama rap": "https://embed.spotify.com/?uri=spotify:playlist:4E2D6vTTyXwvHzTygWJxEh",
"folk brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:7uLxM93RjHpW2dYdtjZVBa",
"trap mexicano": "https://embed.spotify.com/?uri=spotify:playlist:0EMv4RJ77F0dSlGlhFRVbh",
"big band": "https://embed.spotify.com/?uri=spotify:playlist:2cjIvuw4VVOQSeUAZfNiqY",
"west coast trap": "https://embed.spotify.com/?uri=spotify:playlist:0BraqFvmohtWS1TKtBVi6B",
"suomi rock": "https://embed.spotify.com/?uri=spotify:playlist:7aINHNJg40REiMEP6G2Zdq",
"cumbia": "https://embed.spotify.com/?uri=spotify:playlist:0bWU5c6DF4sKYDGX2CX2Cr",
"scottish rock": "https://embed.spotify.com/?uri=spotify:playlist:2CmS2oNTxIvQUSLeJfBIvP",
"uk americana": "https://embed.spotify.com/?uri=spotify:playlist:1fy3ClO9H8sOTy5ij9H5DC",
"shanty": "https://embed.spotify.com/?uri=spotify:playlist:65o8CHGJHdl6kvNdF66XjX",
"gospel": "https://embed.spotify.com/?uri=spotify:playlist:6MCouSvvoujYQJyV5ifPox",
"musica para ninos": "https://embed.spotify.com/?uri=spotify:playlist:3b0dNrX44ZCPCkNZ2LNrt9",
"melodic metal": "https://embed.spotify.com/?uri=spotify:playlist:20iIYgQhyO7JlYOGsFYu0h",
"argentine reggae": "https://embed.spotify.com/?uri=spotify:playlist:2vk7YBjoVhFTgGBxlKcRPF",
"jawaiian": "https://embed.spotify.com/?uri=spotify:playlist:7EIYnaUoJnYUIAvn2jzbAW",
"noise pop": "https://embed.spotify.com/?uri=spotify:playlist:79vSZtZGJqNVs3KYInh42V",
"french synthpop": "https://embed.spotify.com/?uri=spotify:playlist:767e9eYAfk4bApi2vMIK32",
"trancecore": "https://embed.spotify.com/?uri=spotify:playlist:3GL4HNVOg9IqD5jxVpSRp7",
"british soundtrack": "https://embed.spotify.com/?uri=spotify:playlist:7jcM11GE25u4XbhzuU7wYv",
"velha guarda": "https://embed.spotify.com/?uri=spotify:playlist:6xQfoAD6GdXI4CWJWzTgdi",
"nigerian hip hop": "https://embed.spotify.com/?uri=spotify:playlist:33VujNIodgRGBI4TUuB4mx",
"hardcore punk": "https://embed.spotify.com/?uri=spotify:playlist:4H6GLDvB0kzoCyavxb1Z4B",
"doo-wop": "https://embed.spotify.com/?uri=spotify:playlist:1IhmjinFqRJffCiNI1NBPt",
"dembow": "https://embed.spotify.com/?uri=spotify:playlist:6r9pKD3yNDbAm1iA0FhDM6",
"channel pop": "https://embed.spotify.com/?uri=spotify:playlist:5Ts3jfNCNXUoNeDOEfhqv4",
"turntablism": "https://embed.spotify.com/?uri=spotify:playlist:5ZkLWGmHP329LAyPnpvydQ",
"german romanticism": "https://embed.spotify.com/?uri=spotify:playlist:1JLrWsFDWyPiG9NIIn2zjO",
"dark clubbing": "https://embed.spotify.com/?uri=spotify:playlist:4Hy2WDRHQh3020nVdICxvh",
"russelater": "https://embed.spotify.com/?uri=spotify:playlist:2M8B32cPJrc5ez3oqdkFqC",
"bmore": "https://embed.spotify.com/?uri=spotify:playlist:0BucwX8Ux9HWxDYgbI445d",
"cubaton": "https://embed.spotify.com/?uri=spotify:playlist:2aLVzwpdZekDdq6kh941ss",
"rap df": "https://embed.spotify.com/?uri=spotify:playlist:1OshzQCcmOiCmQM85RHAbV",
"jazz boom bap": "https://embed.spotify.com/?uri=spotify:playlist:4gV5tlVTMLPbFQqkd8LxWh",
"future house": "https://embed.spotify.com/?uri=spotify:playlist:2u6y2dDw8lKwW389jYEMoN",
"k-indie": "https://embed.spotify.com/?uri=spotify:playlist:3P4E2aY9cPJSpu35WUxyFk",
"chill out": "https://embed.spotify.com/?uri=spotify:playlist:5PI1ISPDdvY2InHQ4ltty1",
"eurovision": "https://embed.spotify.com/?uri=spotify:playlist:4WdG8sQgKR7USLglfavgzO",
"jazz rap": "https://embed.spotify.com/?uri=spotify:playlist:7nhthR622V6o8iiPhvPgXK",
"swedish synthpop": "https://embed.spotify.com/?uri=spotify:playlist:3VgX2GJWjSN7rW70g70ZCf",
"neo-singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:0BhYpMRb8Y8Qu76nu7gFmh",
"deep ccm": "https://embed.spotify.com/?uri=spotify:playlist:327irrZplP8A15mvzhraRl",
"folklore argentino": "https://embed.spotify.com/?uri=spotify:playlist:4MEHK2ca0qSJhJJvLA0raB",
"cuarteto": "https://embed.spotify.com/?uri=spotify:playlist:3yD30J9sFKpMe60dbvfrIs",
"contemporary jazz": "https://embed.spotify.com/?uri=spotify:playlist:0M2STcvX62sBK5YuLTE076",
"romanian pop": "https://embed.spotify.com/?uri=spotify:playlist:68oBTMg4kV2C1UXDAxOmeH",
"iskelma": "https://embed.spotify.com/?uri=spotify:playlist:1fZS0IY1MSY6PIyWktr0bx",
"finnish metal": "https://embed.spotify.com/?uri=spotify:playlist:18oX7hhCoQ3AIQyBmtD6Fn",
"classic mandopop": "https://embed.spotify.com/?uri=spotify:playlist:1891EOiCVUivgiyS2L2XT9",
"diva house": "https://embed.spotify.com/?uri=spotify:playlist:0kAFZCbHemKb8RxZhDPZbv",
"rock cristiano": "https://embed.spotify.com/?uri=spotify:playlist:6xLA8mHVCxyHRW9Mxfn8Dy",
"indie punk": "https://embed.spotify.com/?uri=spotify:playlist:2owRoUVlHqTdJF3FmF5uwZ",
"canadian country": "https://embed.spotify.com/?uri=spotify:playlist:72nKBOJxfLUr3iuUUMn2nV",
"hyphy": "https://embed.spotify.com/?uri=spotify:playlist:6ovzr8QuZNSVBiNI0uyS36",
"japanese vgm": "https://embed.spotify.com/?uri=spotify:playlist:3qQ2SLHCdYskqH5tl0UuUf",
"british indie rock": "https://embed.spotify.com/?uri=spotify:playlist:0ARblR7ZK5o8QPd3dNnjqr",
"milan indie": "https://embed.spotify.com/?uri=spotify:playlist:6wxQuk8s6miAo3QMUxtY4K",
"jazz piano": "https://embed.spotify.com/?uri=spotify:playlist:5KudWqpwRKdH5CY6yQ1nwA",
"christian relaxative": "https://embed.spotify.com/?uri=spotify:playlist:4SR5G11OQyBa5WCPm24J1N",
"classic soundtrack": "https://embed.spotify.com/?uri=spotify:playlist:6oFOZ4cBewLRG3Vp07xmMI",
"champeta": "https://embed.spotify.com/?uri=spotify:playlist:0hj6krZD6CE8wxg9nmIswz",
"indian instrumental": "https://embed.spotify.com/?uri=spotify:playlist:2hNgMUbA6cV6NaIbXhd2Bg",
"new york drill": "https://embed.spotify.com/?uri=spotify:playlist:4I1H54YGRvkSKfII2XhSlB",
"manguebeat": "https://embed.spotify.com/?uri=spotify:playlist:1PMeCT6ELd8s6QQUjMTSAN",
"indonesian jazz": "https://embed.spotify.com/?uri=spotify:playlist:1aVMByzod7x5EWG4TiK9Fw",
"spanish new wave": "https://embed.spotify.com/?uri=spotify:playlist:1pujdlFcV8pY03jkhbkmvN",
"deathcore": "https://embed.spotify.com/?uri=spotify:playlist:3AnaNnUtgFvsTdx1OGr80h",
"lo-fi": "https://embed.spotify.com/?uri=spotify:playlist:3uzi1GRl4eTJYyQhGvDf7X",
"anadolu rock": "https://embed.spotify.com/?uri=spotify:playlist:1VT5zGqqy4CSw6zArZoZgF",
"a cappella": "https://embed.spotify.com/?uri=spotify:playlist:5K5Bo0zrf3aoNvvDpGWxdK",
"synthwave": "https://embed.spotify.com/?uri=spotify:playlist:2qlBFnzL6CPxqRwenjrX53",
"northern soul": "https://embed.spotify.com/?uri=spotify:playlist:5aqkOAOy9lUITs0XUJfJJa",
"japanese emo": "https://embed.spotify.com/?uri=spotify:playlist:1XtPFaH9uCg92IUh349zfu",
"trap baiano": "https://embed.spotify.com/?uri=spotify:playlist:5HUyLYZf5C8WLIn8VXLtq7",
"seattle hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2JPri9wt0WCXMikD73KDpD",
"gothic symphonic metal": "https://embed.spotify.com/?uri=spotify:playlist:61BVo2kYujeavfw38gf5rm",
"ska mexicano": "https://embed.spotify.com/?uri=spotify:playlist:7qshObBpTeNY6nyMtcXXCw",
"coverchill": "https://embed.spotify.com/?uri=spotify:playlist:2X35a4BVWpyP9BwcyRRhJD",
"nwobhm": "https://embed.spotify.com/?uri=spotify:playlist:6uSkf3ARKkBhgf8bQE8NSN",
"modern alternative pop": "https://embed.spotify.com/?uri=spotify:playlist:5yagbqWY6gDlqB893zjOmO",
"detroit rock": "https://embed.spotify.com/?uri=spotify:playlist:3MuC7Uw1uy5rBppdjDF4OX",
"argentine telepop": "https://embed.spotify.com/?uri=spotify:playlist:1CoY8DjYLjdcrwLVlL9Vri",
"new age piano": "https://embed.spotify.com/?uri=spotify:playlist:3z3YJH7rEJWuaVqggQaHnI",
"arab pop": "https://embed.spotify.com/?uri=spotify:playlist:6qf2sOrwU08PIM4aMggZS5",
"middle earth": "https://embed.spotify.com/?uri=spotify:playlist:5oCnQo5S6M9850XBP8LTqS",
"indie deutschrap": "https://embed.spotify.com/?uri=spotify:playlist:4yxukBJleJySko2vU8I3Mz",
"liedermacher": "https://embed.spotify.com/?uri=spotify:playlist:2CUoWOcTZtUfKD1DeRFFcK",
"indie game soundtrack": "https://embed.spotify.com/?uri=spotify:playlist:74xxbuuHJujl204kaRgsLk",
"tropicalia": "https://embed.spotify.com/?uri=spotify:playlist:51yKz5fPHdl24jkxK0GXaC",
"anime latino": "https://embed.spotify.com/?uri=spotify:playlist:1HMUV9FmJk6ugG11QAKTTp",
"polynesian pop": "https://embed.spotify.com/?uri=spotify:playlist:45anIT1Lg5xrUsgkznbwzm",
"afrofuturismo brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:7GcKmMlvh7g2yx3AgRwZLA",
"rhythm and blues": "https://embed.spotify.com/?uri=spotify:playlist:4uSZwUcMhCdfspqtWaQGwD",
"brega funk": "https://embed.spotify.com/?uri=spotify:playlist:2s2ntVO9pqBxQy2q9CD7ov",
"turkish singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:4tenLyP9rbOA9oI4ZA2hwB",
"post-rock": "https://embed.spotify.com/?uri=spotify:playlist:3G9lrZrzBwmQ1F3OvvvV6d",
"jazz saxophone": "https://embed.spotify.com/?uri=spotify:playlist:4VrV2cOsoGbmH7IwsHfc7z",
"alternative pop rock": "https://embed.spotify.com/?uri=spotify:playlist:5wXsLEgQ3EEJuNNCptHKeR",
"english indie rock": "https://embed.spotify.com/?uri=spotify:playlist:5HyQ5GsKMRx7eTPoZyD7pu",
"tecnobanda": "https://embed.spotify.com/?uri=spotify:playlist:5yBIfrNoe8gDDRkddgTm4d",
"comic metal": "https://embed.spotify.com/?uri=spotify:playlist:62KNLpt0asiJcAw8hihPJq",
"chilean indie": "https://embed.spotify.com/?uri=spotify:playlist:4I49J6EQBbt7X4lLTg2WiQ",
"malaysian pop": "https://embed.spotify.com/?uri=spotify:playlist:21vmnDNKEQfYgZvtOBEpf2",
"instrumental rock": "https://embed.spotify.com/?uri=spotify:playlist:4GpNjPNQcTI39mXe6ht1ud",
"float house": "https://embed.spotify.com/?uri=spotify:playlist:4CvNSwKn7f9ngVLlP2Jr0O",
"melbourne bounce": "https://embed.spotify.com/?uri=spotify:playlist:5juwTItf3H3eQuzrGiKwf9",
"taiwan singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:6f3URcUAIeraG7jHhVq3C7",
"canadian pop punk": "https://embed.spotify.com/?uri=spotify:playlist:2n39wrdsYsdsEUrzMRYVdo",
"british folk": "https://embed.spotify.com/?uri=spotify:playlist:1m7KQp2pFxqhVvXnde3nNe",
"stoner metal": "https://embed.spotify.com/?uri=spotify:playlist:6C7kz6eR1Sf12ZBrzl7aD8",
"minneapolis sound": "https://embed.spotify.com/?uri=spotify:playlist:15Sl0jYESB2NB7NMGx0Oge",
"asmr": "https://embed.spotify.com/?uri=spotify:playlist:5fuOMOhKpRjdcuquIHWW15",
"rock drums": "https://embed.spotify.com/?uri=spotify:playlist:3omUcNqpUCn8aaYgjlFyok",
"australian reggae fusion": "https://embed.spotify.com/?uri=spotify:playlist:2tPZzJ3n0CO4JJpCuRhFTM",
"hard rock brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:67CFxN2tAcaedpUbwrQu7f",
"rkt": "https://embed.spotify.com/?uri=spotify:playlist:3VrPTHyM5DuNHzEZUWzsnt",
"korean ost": "https://embed.spotify.com/?uri=spotify:playlist:3IYiaXY49BlwvlBaFcFvbb",
"south african pop": "https://embed.spotify.com/?uri=spotify:playlist:2gCb5sPRAaufQVrfBOLgdN",
"levenslied": "https://embed.spotify.com/?uri=spotify:playlist:6ttzwuno3FKJSdGdtXM5IG",
"variete francaise": "https://embed.spotify.com/?uri=spotify:playlist:0MtjpTQ7m7V5cVJrUqoB8H",
"cumbia ranchera": "https://embed.spotify.com/?uri=spotify:playlist:1K8Y4kHYHfjt6ihSDuSMaw",
"trap chileno": "https://embed.spotify.com/?uri=spotify:playlist:187WTgmHaJtn3BZy5jphdb",
"hands up": "https://embed.spotify.com/?uri=spotify:playlist:29l2v5sGaKTBwZd9I74CfA",
"pinoy indie": "https://embed.spotify.com/?uri=spotify:playlist:5166vpEenpiy4kVU9XafbS",
"indie triste": "https://embed.spotify.com/?uri=spotify:playlist:1euhr12icBWvWTkNcQIvnY",
"djent": "https://embed.spotify.com/?uri=spotify:playlist:6dRyRBIZl5acVd14h733T1",
"italian underground hip hop": "https://embed.spotify.com/?uri=spotify:playlist:6CtSs2O8jBtCyfW5Bjg8CB",
"greek pop": "https://embed.spotify.com/?uri=spotify:playlist:0sqLM1ijAdKHSh2iHNv5He",
"salsa colombiana": "https://embed.spotify.com/?uri=spotify:playlist:2QVsIulY60RZs8u18nPccL",
"musica catalana": "https://embed.spotify.com/?uri=spotify:playlist:5Y51KuTG9GMPB96cq5OZEj",
"canadian contemporary country": "https://embed.spotify.com/?uri=spotify:playlist:1Q21zPND8PRlf6boARmyX5",
"boston rock": "https://embed.spotify.com/?uri=spotify:playlist:3nbCGvGDojsTWlcFKRBiBP",
"detroit trap": "https://embed.spotify.com/?uri=spotify:playlist:1VSBIae39ufpI4NF4htItX",
"afrobeat": "https://embed.spotify.com/?uri=spotify:playlist:2LxpkqYcJkFGJxBbDsvveK",
"rap cristiano": "https://embed.spotify.com/?uri=spotify:playlist:2HAQJtMJXSdgthjyE9TZOI",
"st louis rap": "https://embed.spotify.com/?uri=spotify:playlist:72Tt7drbZmRpxiyRFkrT7c",
"rave funk": "https://embed.spotify.com/?uri=spotify:playlist:0Bx8EytO6xZ0O04CG0yM1X",
"portuguese pop": "https://embed.spotify.com/?uri=spotify:playlist:1Rn01P3YPioy5QRQoo32Lv",
"stomp pop": "https://embed.spotify.com/?uri=spotify:playlist:7rQW0xSgtYDORMp35iKEGl",
"drill francais": "https://embed.spotify.com/?uri=spotify:playlist:7ps4PEcNxt0xc1LN3rypdg",
"glee club": "https://embed.spotify.com/?uri=spotify:playlist:2IKefe4UNnh5F4QQ51yOz0",
"mainland chinese pop": "https://embed.spotify.com/?uri=spotify:playlist:7KmV0LJiGPgoQFKAOqgWxs",
"j-division": "https://embed.spotify.com/?uri=spotify:playlist:1W1ZU2KC8ycl8BY7naUBlm",
"impressionism": "https://embed.spotify.com/?uri=spotify:playlist:5fOqzWOlWWGZlPI6NTUmct",
"happy hardcore": "https://embed.spotify.com/?uri=spotify:playlist:17TwTPITOWP0Ep9joASCrm",
"garage psych": "https://embed.spotify.com/?uri=spotify:playlist:1R6gkpoaA4kCNsTX2HAeDD",
"aussie drill": "https://embed.spotify.com/?uri=spotify:playlist:1Zmdt7w4HzEAW6IOLa1KKH",
"early modern classical": "https://embed.spotify.com/?uri=spotify:playlist:4PVpbcs9oa63FhDWREEJMt",
"rap chileno": "https://embed.spotify.com/?uri=spotify:playlist:7wUZUB0FCPHsfnspHVzP7s",
"pop peruano": "https://embed.spotify.com/?uri=spotify:playlist:6dB2VXcVGIzYuleOsxLNqL",
"boston hip hop": "https://embed.spotify.com/?uri=spotify:playlist:1qKT01W06KFPouzgMpoULZ",
"swedish indie pop": "https://embed.spotify.com/?uri=spotify:playlist:1Z41nmNKq6E8nBQqRQheTZ",
"classic opm": "https://embed.spotify.com/?uri=spotify:playlist:3B084Cju5o7fea2KaVn3mS",
"rhode island rap": "https://embed.spotify.com/?uri=spotify:playlist:3rO0S2HRXs5QvpLbTSeIcL",
"flamenco": "https://embed.spotify.com/?uri=spotify:playlist:0Z6ypDDrXad1QMj5EapMEV",
"classic cantopop": "https://embed.spotify.com/?uri=spotify:playlist:2CTX0IxBoq69Kq4trHCzAD",
"australian indie folk": "https://embed.spotify.com/?uri=spotify:playlist:2a4AkEFVA2nSuddrYs5Xfr",
"small room": "https://embed.spotify.com/?uri=spotify:playlist:2rPwi4IFhoc2r1MMvY0ZI5",
"australian country": "https://embed.spotify.com/?uri=spotify:playlist:1hseduxVpn5p3ukaREgsSi",
"ambient pop": "https://embed.spotify.com/?uri=spotify:playlist:0yRTC25xu2jLehDX24gFmH",
"future garage": "https://embed.spotify.com/?uri=spotify:playlist:62T9WUAB2E7Xw6PmHRSlaQ",
"hindi hip hop": "https://embed.spotify.com/?uri=spotify:playlist:572Hmii6eSuDai46ZJXgIe",
"rock urbano mexicano": "https://embed.spotify.com/?uri=spotify:playlist:0qvqjbdnqFkCeR3F361ppB",
"stride": "https://embed.spotify.com/?uri=spotify:playlist:0krnYjt6NxEOYruMsGzUqt",
"preschool children's music": "https://embed.spotify.com/?uri=spotify:playlist:6NGDDMCqCjNn7HOfnVWscz",
"musica infantil": "https://embed.spotify.com/?uri=spotify:playlist:7m6BNUydeoHC8wFPKlxy5i",
"j-acoustic": "https://embed.spotify.com/?uri=spotify:playlist:1gdSSexTkGJtAXzZ4xsK5J",
"rock steady": "https://embed.spotify.com/?uri=spotify:playlist:5pyY6lntlity8qpik69gsD",
"modern dream pop": "https://embed.spotify.com/?uri=spotify:playlist:202xgnWdtz9EQx5fvI400m",
"christian trap": "https://embed.spotify.com/?uri=spotify:playlist:7dAAKYBOlPiG4pZxtrF3hx",
"indian indie": "https://embed.spotify.com/?uri=spotify:playlist:6sW7pp87N2Ms8TlarV8l6T",
"sacramento indie": "https://embed.spotify.com/?uri=spotify:playlist:2aSAYJHZZvCgwVcdx7Z9Tc",
"hardcore techno": "https://embed.spotify.com/?uri=spotify:playlist:1PUbKeyQcEE5MgfdaJRsgw",
"old school rap francais": "https://embed.spotify.com/?uri=spotify:playlist:5Bf10lAe8u4oiayBSDlqDM",
"sleaze rock": "https://embed.spotify.com/?uri=spotify:playlist:7BSMAQPtWQ8cLpwxE22kKA",
"swedish tropical house": "https://embed.spotify.com/?uri=spotify:playlist:4D7xfG82EyEq3BWglKNS6A",
"rock gospel brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:0oa0FjnSdQjWzBIhl4GEqy",
"progressive post-hardcore": "https://embed.spotify.com/?uri=spotify:playlist:4tzo97AF7cGmRpYnnMosHP",
"cyberpunk": "https://embed.spotify.com/?uri=spotify:playlist:5qRiSivbLQ3QI5AH3Zsxg1",
"philly indie": "https://embed.spotify.com/?uri=spotify:playlist:5bywGHY4NQKcTmGXAVsf3N",
"slayer": "https://embed.spotify.com/?uri=spotify:playlist:5RSFiF5lKFazAm26oCvJO2",
"kentucky roots": "https://embed.spotify.com/?uri=spotify:playlist:5K1iPKk49VzQ7QFocqwgYx",
"philly soul": "https://embed.spotify.com/?uri=spotify:playlist:6D3nMYU82Nkl2qgd3b2PrM",
"women's music": "https://embed.spotify.com/?uri=spotify:playlist:3X4MhznRfBJnatWERZHW73",
"lesen": "https://embed.spotify.com/?uri=spotify:playlist:5lhSLZIxNEpC4uttsZZdrN",
"modern southern rock": "https://embed.spotify.com/?uri=spotify:playlist:2lZsuDl0JRkpDmZO9Poor1",
"hip hop tuga": "https://embed.spotify.com/?uri=spotify:playlist:0x84YFPn4ct9Wvaix9icxJ",
"folk punk": "https://embed.spotify.com/?uri=spotify:playlist:2FY0iRROQx0marHTDB5ntD",
"hopebeat": "https://embed.spotify.com/?uri=spotify:playlist:3pENYVTMuevP3CLjzQkDpQ",
"traditional blues": "https://embed.spotify.com/?uri=spotify:playlist:4fPXonBYvsGcigbOEKFudk",
"norteno-sax": "https://embed.spotify.com/?uri=spotify:playlist:4Wi7kR0LDvvxbxosl10Hke",
"trap venezolano": "https://embed.spotify.com/?uri=spotify:playlist:6TGv97F18XyaIiAqGs8Kh6",
"classic russian rock": "https://embed.spotify.com/?uri=spotify:playlist:26C6ieZHP6osxOV3WKiiBm",
"classic danish pop": "https://embed.spotify.com/?uri=spotify:playlist:6uRm8wS0P52MoXspeFSJul",
"portland hip hop": "https://embed.spotify.com/?uri=spotify:playlist:4km1u4CDqjbRX4Z8kAQail",
"classic girl group": "https://embed.spotify.com/?uri=spotify:playlist:6TFuQZNFJiSZZILqBd1LnJ",
"rap underground mexicano": "https://embed.spotify.com/?uri=spotify:playlist:5ZnzanI9mpeinOWV4rqNr1",
"brighton indie": "https://embed.spotify.com/?uri=spotify:playlist:6kntHMhgGR82iUBGGodqW5",
"sky room": "https://embed.spotify.com/?uri=spotify:playlist:0eEspHigzRe4qFl1W4lfRN",
"latin afrobeat": "https://embed.spotify.com/?uri=spotify:playlist:1a24EyiWhu2ChuRM5Bfqfu",
"j-idol": "https://embed.spotify.com/?uri=spotify:playlist:73mIbBtGZZrvber2h9Y7Lu",
"modern funk": "https://embed.spotify.com/?uri=spotify:playlist:3yFZlBn3cORhGoEfCHTdKk",
"latin metal": "https://embed.spotify.com/?uri=spotify:playlist:79hARNnoeG5aL4cC0pJrJ8",
"pop virale italiano": "https://embed.spotify.com/?uri=spotify:playlist:5GHeUAdOq5tTdtDQm3kagL",
"chicago indie": "https://embed.spotify.com/?uri=spotify:playlist:0DsF1mb3M7yhJM6MUXR6fL",
"synth funk": "https://embed.spotify.com/?uri=spotify:playlist:70XGi5LroLK2ZJH1MZyAlR",
"kirtan": "https://embed.spotify.com/?uri=spotify:playlist:3eVTClqdypXLETw97iznv5",
"indie hip hop": "https://embed.spotify.com/?uri=spotify:playlist:2AIGUJ4j4Bd5q8tUfurZnD",
"german hard rock": "https://embed.spotify.com/?uri=spotify:playlist:5M9OhWILZhUHrJZapQ7tSO",
"carnaval": "https://embed.spotify.com/?uri=spotify:playlist:4b7GbUPm9ikbMF0G0finII",
"rif": "https://embed.spotify.com/?uri=spotify:playlist:0HphLqHgdLI5FsTHX3wCj3",
"italo dance": "https://embed.spotify.com/?uri=spotify:playlist:3IExr8qtJzsRF1vICyPux3",
"electropowerpop": "https://embed.spotify.com/?uri=spotify:playlist:2STQEZpFAQHJqrT3UhRNIK",
"ottawa rap": "https://embed.spotify.com/?uri=spotify:playlist:5wxM3elzbLxczas9whcYyR",
"hamburg electronic": "https://embed.spotify.com/?uri=spotify:playlist:3OLnmWjHbXKRIiRNDNfntH",
"arabic hip hop": "https://embed.spotify.com/?uri=spotify:playlist:7zBydkoj9qpNmelxR9goHB",
"new jersey indie": "https://embed.spotify.com/?uri=spotify:playlist:1dP8vfs0Vt1uNk8VbPVwWJ",
"jazztronica": "https://embed.spotify.com/?uri=spotify:playlist:69OpOkQ8dkxZGn4If6ry6G",
"organic electronic": "https://embed.spotify.com/?uri=spotify:playlist:1Cf8ZdtSkyItY3LKaiZnWD",
"electro swing": "https://embed.spotify.com/?uri=spotify:playlist:5oDNHd53EGh5BoiWGYIqH0",
"nu-metalcore": "https://embed.spotify.com/?uri=spotify:playlist:0SYBSM50ldqqPQgxDhEspE",
"asian american hip hop": "https://embed.spotify.com/?uri=spotify:playlist:3WC66rd9N7tuZuGOSQuFsA",
"bluegrass": "https://embed.spotify.com/?uri=spotify:playlist:5JJqX7mabvOf6x2SfHqnzU",
"karadeniz halk muzigi": "https://embed.spotify.com/?uri=spotify:playlist:6nAOWmyYPXdqQtAJ8AdpwX",
"rock alternativo brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:552Xx5pWGNMm6olPM01Dzz",
"classic norwegian pop": "https://embed.spotify.com/?uri=spotify:playlist:77XtO891xN5zPjQ6hvZkbW",
"austindie": "https://embed.spotify.com/?uri=spotify:playlist:30t7SqNFcol7qd79XWxrgh",
"australian garage punk": "https://embed.spotify.com/?uri=spotify:playlist:1ni3hkYRNx5Sn9eX2igLSP",
"nz reggae": "https://embed.spotify.com/?uri=spotify:playlist:5eVO31RjkfRfpa7B2Ex4hc",
"fourth world": "https://embed.spotify.com/?uri=spotify:playlist:334HQUev7fUfGPdNWg73Xa",
"tamil hip hop": "https://embed.spotify.com/?uri=spotify:playlist:7iXfcP5kZ4EPqSSmySAUtf",
"lo-fi cover": "https://embed.spotify.com/?uri=spotify:playlist:1GNpGs1XlJhH1ByOFhYfcN",
"japanese electropop": "https://embed.spotify.com/?uri=spotify:playlist:3QTAQ5biSQcxBD7dooJf4M",
"cosmic american": "https://embed.spotify.com/?uri=spotify:playlist:05y5YX2kQFi6J8B5ece5qy",
"pet calming": "https://embed.spotify.com/?uri=spotify:playlist:2GMM4p5RuHWAFfWPSXQJ9D",
"electronic rock": "https://embed.spotify.com/?uri=spotify:playlist:4bcSFTS3Cfc2l37m0pWAsV",
"german singer-songwriter": "https://embed.spotify.com/?uri=spotify:playlist:7vVJyi5ArX0m0dvPZYWLJ1",
"japanese r&b": "https://embed.spotify.com/?uri=spotify:playlist:7N35r1mrsCLe66LczBV7EQ",
"spanish punk": "https://embed.spotify.com/?uri=spotify:playlist:6GsfAMPH5NWV1LfJtGWrI8",
"comedy": "https://embed.spotify.com/?uri=spotify:playlist:4PDKZIGNpydaoI7pZuxyh7",
"ambient folk": "https://embed.spotify.com/?uri=spotify:playlist:7eKmP82luDpQR2hymWE1iJ",
"deep pop edm": "https://embed.spotify.com/?uri=spotify:playlist:5ouQTmehX3Fu4L3JmMsTo3",
"pop electronico": "https://embed.spotify.com/?uri=spotify:playlist:5Kp6a88KudsUrg1FosSUdr",
"harlem renaissance": "https://embed.spotify.com/?uri=spotify:playlist:6iZqWDC417BZOeGrBRlfsR",
"canzone d'autore": "https://embed.spotify.com/?uri=spotify:playlist:5gq8uMPUlfKETqFUxujLIP",
"jazz guitar": "https://embed.spotify.com/?uri=spotify:playlist:4tH5CLOMXHah6ngcr3Z2Gu",
"nerdcore brasileiro": "https://embed.spotify.com/?uri=spotify:playlist:1iHqGq35jAzFcUJepCqcLy",
"bolero mexicano": "https://embed.spotify.com/?uri=spotify:playlist:7skhVBoiTy8Po9UdfkJ4Gy",
"art punk": "https://embed.spotify.com/?uri=spotify:playlist:180M35eDbTmmTCZWuJf6QO",
"psychedelic soul": "https://embed.spotify.com/?uri=spotify:playlist:2bQ8L09OJhqy6aaEdeMtSi",