{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "# fundctions for lyrics de-duplication\n",
    "\n",
    "import re\n",
    "from collections import defaultdict\n",
    "from tqdm import tqdm\n",
    "\n",
    "def clean_text(text):\n",
    "    \"\"\"Clean text by removing punctuation and extra spaces.\"\"\"\n",
    "    text = re.sub(r'[^\\w\\s]', '', text.lower())\n",
    "    return ' '.join(text.split())\n",
    "\n",
    "def get_text_hash(text):\n",
    "    \"\"\"Create a simple hash from text by taking first and last words plus length.\"\"\"\n",
    "    words = clean_text(text).split()\n",
    "    if len(words) < 2:\n",
    "        return words[0] if words else ''\n",
    "    return f\"{words[0]}_{words[-1]}_{len(words)}\"\n",
    "\n",
    "def find_similar_lyrics(lyrics_list):\n",
    "    \"\"\"Find similar lyrics using a simple hashing approach.\"\"\"\n",
    "    print(f\"Processing {len(lyrics_list)} lyrics...\")\n",
    "    \n",
    "    # Group lyrics by hash\n",
    "    hash_groups = defaultdict(list)\n",
    "    \n",
    "    # Process each lyric with progress bar\n",
    "    for idx, lyric in tqdm(enumerate(lyrics_list), total=len(lyrics_list)):\n",
    "        text_hash = get_text_hash(lyric)\n",
    "        hash_groups[text_hash].append((idx, lyric))\n",
    "    \n",
    "    # Filter to only groups with multiple entries\n",
    "    similar_groups = [group for group in hash_groups.values() if len(group) > 1]\n",
    "    \n",
    "    print(f\"\\nFound {len(similar_groups)} groups of similar lyrics\")\n",
    "    return similar_groups"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [],
   "source": [
    "# load metas\n",
    "import os\n",
    "from suno_utils.utils.text import read_jsonl\n",
    "\n",
    "METAS_DIR = \"/app/suno/tmp\"\n",
    "metas = read_jsonl(os.path.join(METAS_DIR, \"clean_discogs_subset_v0_metas.jsonl\"))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2199518\n",
      "Processing 2199518 lyrics...\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|██████████| 2199518/2199518 [02:01<00:00, 18055.22it/s]\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "\n",
      "Found 209401 groups of similar lyrics\n",
      "209401\n"
     ]
    }
   ],
   "source": [
    "# as a final step, de-duplicate the lyrics \n",
    "\n",
    "# first filter metas to those only with text\n",
    "text_metas = [meta for meta in metas if \"text\" in meta]\n",
    "lyrics_list = [meta[\"text\"] for meta in text_metas]\n",
    "print(len(lyrics_list))\n",
    "similar_groups = find_similar_lyrics(lyrics_list)\n",
    "print(len(similar_groups))\n",
    "\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "num matches: 83\n",
      "664 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'FZ80pWMCfdI', 's3_filepath': 's3://suno-data/shared/nfdg/FZ80pWMCfdI/FZ80pWMCfdI/audio.webm', 'duration_s': 211, 'tags': ['1994', \"Children's\"], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['tuuhn5rq']}\n",
      "41127 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '28tGJG44vAM', 's3_filepath': 's3://suno-data/shared/nfdg/28tGJG44vAM/28tGJG44vAM/audio.webm', 'duration_s': 145, 'tags': ['2015', 'Christmas', 'Christmas Music', 'Traditional Pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['e92xn0f4']}\n",
      "80098 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'xyjjdXwDH1g', 's3_filepath': 's3://suno-data/shared/nfdg/xyjjdXwDH1g/artists/songs/audio/xyjjdXwDH1g/audio.webm', 'duration_s': 296, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['s3c4xuf4']}\n",
      "85446 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'dRP3JipZMIg', 's3_filepath': 's3://suno-data/shared/nfdg/dRP3JipZMIg/dRP3JipZMIg/audio.webm', 'duration_s': 426, 'tags': ['1994', 'New Age', 'instrumental', 'tropical'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['9x65wg6k']}\n",
      "98510 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'CKhzuVCF5mE', 's3_filepath': 's3://suno-data/shared/nfdg/CKhzuVCF5mE/CKhzuVCF5mE/audio.webm', 'duration_s': 168, 'tags': ['Jazz', 'Smooth Jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['8c0use85']}\n",
      "125660 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'G-LACD4DHAQ', 's3_filepath': 's3://suno-data/shared/nfdg/G-LACD4DHAQ/G-LACD4DHAQ/audio.webm', 'duration_s': 269, 'tags': ['1998', 'a cappella'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['d6ztd4pr']}\n",
      "132860 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'asrwuNzUWHI', 's3_filepath': 's3://suno-data/shared/nfdg/asrwuNzUWHI/artists/songs/audio/asrwuNzUWHI/audio.webm', 'duration_s': 267, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['onp4edw7']}\n",
      "139008 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey\n",
      "And some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys\n",
      "And goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer\n",
      "Really know how to fly\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said\n",
      "Many times, many ways\n",
      "Merry Christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'bi6Gk1xwehA', 's3_filepath': 's3://suno-data/shared/nfdg/bi6Gk1xwehA/bi6Gk1xwehA/audio.webm', 'duration_s': 215, 'tags': ['2007', '2008 universal fire victim', 'contemporary country', 'country pop', 'holidays', 'neo-traditionalist country', 'new traditionalist'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey\\nAnd some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys\\nAnd goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer\\nReally know how to fly\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said\\nMany times, many ways\\nMerry Christmas to you\", 'lang': 'en', 'artists': ['cmcr5inz']}\n",
      "147696 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'dToFnfFtUMs', 's3_filepath': 's3://suno-data/shared/nfdg/dToFnfFtUMs/dToFnfFtUMs/audio.webm', 'duration_s': 196, 'tags': ['00s', '2000s', '2002', 'Contemporary R&B', 'Europop', 'Funk / Soul', 'blue-eyed soul', 'dance-pop', 'pop soul', 'r&b', 'rnb/swing', 'teen pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['87d7bnit']}\n",
      "190913 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'rKVaa0FKCkU', 's3_filepath': 's3://suno-data/shared/nfdg/rKVaa0FKCkU/rKVaa0FKCkU/audio.webm', 'duration_s': 325, 'tags': ['1997', '2008 universal fire victim', 'Folk, World, & Country', 'Funk / Soul', 'Rhythm & Blues', 'rhythm and blues'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['henmy5ca']}\n",
      "206811 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'ntxJ0dmIvHI', 's3_filepath': 's3://suno-data/shared/nfdg/ntxJ0dmIvHI/ntxJ0dmIvHI/audio.webm', 'duration_s': 332, 'tags': ['2001', 'pop soul', 'smooth soul', 'vocal jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['hxo798po']}\n",
      "237793 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'rjO2ZAKtFYM', 's3_filepath': 's3://suno-data/shared/nfdg/rjO2ZAKtFYM/rjO2ZAKtFYM/audio.webm', 'duration_s': 315, 'tags': ['2006', 'Christmas Music', 'Cool Jazz', 'drums (drum set)'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['cu2y78rl']}\n",
      "250218 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'nLPb44PhSVk', 's3_filepath': 's3://suno-data/shared/nfdg/nLPb44PhSVk/nLPb44PhSVk/audio.webm', 'duration_s': 135, 'tags': ['2000', 'Brill Building', 'C86', 'Garage Rock Revival', 'Indie Rock', 'Jangle Pop', 'Noise Pop', 'Twee Pop', 'bittersweet', 'energetic', 'female vocalist', 'intro', 'introspective', 'lonely', 'male vocalist', 'mellow', 'melodic', 'playful', 'quirky', 'urban', 'winter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['hinws7qw']}\n",
      "250898 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yuletide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody know a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that santa's on his way\n",
      "He's bringing lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly\n",
      "\n",
      "And so i'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'cR-OW4kdCHo', 's3_filepath': 's3://suno-data/shared/nfdg/cR-OW4kdCHo/cR-OW4kdCHo/audio.webm', 'duration_s': 198, 'tags': [\"Children's\", 'Christmas Music', 'Latin', 'indie pop', 'latin pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYuletide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody know a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that santa's on his way\\nHe's bringing lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly\\n\\nAnd so i'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry christmas to you\", 'lang': 'en', 'artists': ['pj7fyvby']}\n",
      "287874 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'udIISfHK3t4', 's3_filepath': 's3://suno-data/shared/nfdg/udIISfHK3t4/udIISfHK3t4/audio.webm', 'duration_s': 227, 'tags': ['1991', 'Funk / Soul', 'New Age', 'Smooth Jazz', 'Soul-Jazz', 'contemporary jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['ylg0kfit']}\n",
      "300049 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'gQVmoRlIlcA', 's3_filepath': 's3://suno-data/shared/nfdg/gQVmoRlIlcA/gQVmoRlIlcA/audio.webm', 'duration_s': 229, 'tags': ['1995'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['d0lcqjqx']}\n",
      "305071 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '5uoh4E8WnMk', 's3_filepath': 's3://suno-data/shared/nfdg/5uoh4E8WnMk/5uoh4E8WnMk/audio.webm', 'duration_s': 319, 'tags': ['1992', '2008 universal fire victim', 'drums (drum set)', 'hard bop', 'post bop', 'post-bop', 'tenor saxophone', 'vocal jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['yahyg4pq']}\n",
      "314483 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '-SLPEAnLGYQ', 's3_filepath': 's3://suno-data/shared/nfdg/-SLPEAnLGYQ/-SLPEAnLGYQ/audio.webm', 'duration_s': 206, 'tags': ['2007', '2008 universal fire victim', 'Funk / Soul', 'contemporary r&b', 'rhythm and blues'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['55goc1y1']}\n",
      "369517 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'mOh8z7SqIPU', 's3_filepath': 's3://suno-data/shared/nfdg/mOh8z7SqIPU/mOh8z7SqIPU/audio.webm', 'duration_s': 224, 'tags': ['2003', 'Christmas Music', 'Hard Rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['imrwoac0']}\n",
      "475383 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'CUdwrzqpVls', 's3_filepath': 's3://suno-data/shared/nfdg/CUdwrzqpVls/artists/songs/audio/CUdwrzqpVls/audio.webm', 'duration_s': 174, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['lug1oq7t']}\n",
      "478725 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'SVpipMcxJRY', 's3_filepath': 's3://suno-data/shared/nfdg/SVpipMcxJRY/SVpipMcxJRY/audio.webm', 'duration_s': 139, 'tags': ['1966', 'Christmas Music', 'Easy Listening'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['wpes9729']}\n",
      "504227 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'v9Aqd7vDNag', 's3_filepath': 's3://suno-data/shared/nfdg/v9Aqd7vDNag/v9Aqd7vDNag/audio.webm', 'duration_s': 245, 'tags': ['1994', 'Christmas Music', 'Contemporary Jazz', 'Modern Classical', 'New Age', 'calm', 'contemporary jazz', 'instrumental', 'modern classical', 'winter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['ylxb7get']}\n",
      "537940 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'yCwFL5LVsG0', 's3_filepath': 's3://suno-data/shared/nfdg/yCwFL5LVsG0/yCwFL5LVsG0/audio.webm', 'duration_s': 273, 'tags': ['2002', 'Rhodes piano', 'alto flute', 'drums (drum set)', 'jazz and blues'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['au5ejnm8']}\n",
      "551609 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'TT1HqFjBFBc', 's3_filepath': 's3://suno-data/shared/nfdg/TT1HqFjBFBc/TT1HqFjBFBc/audio.webm', 'duration_s': 148, 'tags': ['2005', '2008 universal fire victim', 'Christmas', 'Christmas Music', 'Vocal Jazz', 'male vocalist'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['u1phfi88']}\n",
      "559201 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yuletide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly\n",
      "\n",
      "And so we're offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although its been said many times, many ways\n",
      "Merry Christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '6sMylXUMhCk', 's3_filepath': 's3://suno-data/shared/nfdg/6sMylXUMhCk/artists/songs/audio/6sMylXUMhCk/audio.webm', 'duration_s': 165, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYuletide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly\\n\\nAnd so we're offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough its been said many times, many ways\\nMerry Christmas to you\", 'lang': 'en', 'artists': ['uxnra9w5']}\n",
      "587035 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey\n",
      "And some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys\n",
      "And goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer\n",
      "Really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said\n",
      "Many times, many ways\n",
      "Merry Christmas to you.\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'yV0wxzjpVSA', 's3_filepath': 's3://suno-data/shared/nfdg/yV0wxzjpVSA/yV0wxzjpVSA/audio.webm', 'duration_s': 221, 'tags': ['2019'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey\\nAnd some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys\\nAnd goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer\\nReally know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said\\nMany times, many ways\\nMerry Christmas to you.\", 'lang': 'en', 'artists': ['u89w50zj']}\n",
      "589710 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'EU3VgESpbJ8', 's3_filepath': 's3://suno-data/shared/nfdg/EU3VgESpbJ8/EU3VgESpbJ8/audio.webm', 'duration_s': 278, 'tags': ['2000', 'Christmas Music', 'Funk / Soul', 'Soul', 'classic pop and rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['7vr43lcx']}\n",
      "593014 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'DDXuQKxi2Os', 's3_filepath': 's3://suno-data/shared/nfdg/DDXuQKxi2Os/DDXuQKxi2Os/audio.webm', 'duration_s': 263, 'tags': ['1996', 'Christmas Music', 'Smooth Jazz', 'contemporary jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['s9fy93mr']}\n",
      "675326 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '5H8H5lO8NCE', 's3_filepath': 's3://suno-data/shared/nfdg/5H8H5lO8NCE/5H8H5lO8NCE/audio.webm', 'duration_s': 262, 'tags': ['2005', 'Christmas Music', 'Smooth Jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['ncyr3knk']}\n",
      "680211 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'APj-ypG10R4', 's3_filepath': 's3://suno-data/shared/nfdg/APj-ypG10R4/APj-ypG10R4/audio.webm', 'duration_s': 262, 'tags': ['Christmas Music', 'Country Pop', 'Country Rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['bhs3p500']}\n",
      "701302 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'aZ7Jw-jmPyg', 's3_filepath': 's3://suno-data/shared/nfdg/aZ7Jw-jmPyg/aZ7Jw-jmPyg/audio.webm', 'duration_s': 156, 'tags': ['1964', '2008 universal fire victim', 'Christmas Music', 'traditional pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['z7tkjuu8']}\n",
      "749150 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yuletide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey and some\n",
      "Mistletoe help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies\n",
      "On his sleigh\n",
      "And ev'ry mother's\n",
      "Child is gonna spy to see if\n",
      "Reindeer really know how to fly\n",
      "\n",
      "And so, I'm offering this\n",
      "Simple phrase to kids from\n",
      "One to ninety-two\n",
      "Altho' it's been said many times\n",
      "Many ways\n",
      "Merry Christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'KjW5T4DaFbI', 's3_filepath': 's3://suno-data/shared/nfdg/KjW5T4DaFbI/KjW5T4DaFbI/audio.webm', 'duration_s': 154, 'tags': ['2005', '2008 universal fire victim', 'Alternative Rock', 'Christmas', 'Christmas Music', 'Pop Rock', 'Power Pop', 'alternative rock', 'dance-pop', 'energetic', 'male vocals', 'melodic', 'playful', 'pop rock', 'power pop', 'sarcastic', 'ska punk', 'surf rock', 'winter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYuletide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey and some\\nMistletoe help to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies\\nOn his sleigh\\nAnd ev'ry mother's\\nChild is gonna spy to see if\\nReindeer really know how to fly\\n\\nAnd so, I'm offering this\\nSimple phrase to kids from\\nOne to ninety-two\\nAltho' it's been said many times\\nMany ways\\nMerry Christmas to you\", 'lang': 'en', 'artists': ['3eisbblb']}\n",
      "764668 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'OwNo9Hn6-vU', 's3_filepath': 's3://suno-data/shared/nfdg/OwNo9Hn6-vU/OwNo9Hn6-vU/audio.webm', 'duration_s': 137, 'tags': ['2003', 'Christmas Music', 'Jazz Fusion', 'american', 'jazz fusion', 'neo-progressive rock', 'pop rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['2cmtbkbe']}\n",
      "802385 Chestnuts roasting on an open fire\n",
      "Jack Frost nippin' at your nose\n",
      "Yuletide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one through ninety-two,\n",
      "Although it's been said many times many ways,\n",
      "Merry Christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'MVra52rPnWk', 's3_filepath': 's3://suno-data/shared/nfdg/MVra52rPnWk/MVra52rPnWk/audio.webm', 'duration_s': 229, 'tags': ['1997', 'Folk, World, & Country', 'singer-songwriter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nippin' at your nose\\nYuletide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one through ninety-two,\\nAlthough it's been said many times many ways,\\nMerry Christmas to you\", 'lang': 'en', 'artists': ['ip58bn3l']}\n",
      "821818 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'IgBW2FMYZfo', 's3_filepath': 's3://suno-data/shared/nfdg/IgBW2FMYZfo/IgBW2FMYZfo/audio.webm', 'duration_s': 272, 'tags': ['1996', 'Christian', 'Christmas', 'Christmas Music', 'Standards', 'androgynous vocals', 'male vocalist', 'novelty', 'playful', 'quirky', 'traditional pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['91ibxak0']}\n",
      "836951 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'ETgziWTtTGk', 's3_filepath': 's3://suno-data/shared/nfdg/ETgziWTtTGk/ETgziWTtTGk/audio.webm', 'duration_s': 193, 'tags': ['1990', 'Folk, World, & Country', 'american', 'country pop', 'nashville sound', 'traditional country'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['zpju5t00']}\n",
      "860320 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'V48BYVKZzwY', 's3_filepath': 's3://suno-data/shared/nfdg/V48BYVKZzwY/artists/songs/audio/V48BYVKZzwY/audio.webm', 'duration_s': 171, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['jvjztbm1']}\n",
      "864347 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '3ZUFDmGd9tA', 's3_filepath': 's3://suno-data/shared/nfdg/3ZUFDmGd9tA/3ZUFDmGd9tA/audio.webm', 'duration_s': 225, 'tags': ['2010', 'Christmas Music', 'Religious', 'pop rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['kfc27zz8']}\n",
      "864633 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'GSknzJBBnFE', 's3_filepath': 's3://suno-data/shared/nfdg/GSknzJBBnFE/GSknzJBBnFE/audio.webm', 'duration_s': 208, 'tags': ['2008', 'Christmas Music', 'Jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['neaqutrp']}\n",
      "880549 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'LORTnWLpAYw', 's3_filepath': 's3://suno-data/shared/nfdg/LORTnWLpAYw/LORTnWLpAYw/audio.webm', 'duration_s': 196, 'tags': ['1994', '2008 universal fire victim', 'singer-songwriter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['zp3quxch']}\n",
      "899653 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '-vFcnJUf2g4', 's3_filepath': 's3://suno-data/shared/nfdg/-vFcnJUf2g4/-vFcnJUf2g4/audio.webm', 'duration_s': 265, 'tags': ['1996', 'Christmas Music', 'Folk, World, & Country', 'Jazz Fusion', 'Religious', 'Smooth Jazz', 'contemporary jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['y4o0obl1']}\n",
      "903955 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'koT9nZ4UOUk', 's3_filepath': 's3://suno-data/shared/nfdg/koT9nZ4UOUk/koT9nZ4UOUk/audio.webm', 'duration_s': 143, 'tags': ['CCM', 'Christmas Music', 'Pop Rock', 'pop rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['kfc27zz8']}\n",
      "907460 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'xJLLQntuIFA', 's3_filepath': 's3://suno-data/shared/nfdg/xJLLQntuIFA/xJLLQntuIFA/audio.webm', 'duration_s': 310, 'tags': ['Christmas Music', 'Cool Jazz', 'contemporary jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['ylg0kfit']}\n",
      "943511 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'cbEBuuRHdc0', 's3_filepath': 's3://suno-data/shared/nfdg/cbEBuuRHdc0/cbEBuuRHdc0/audio.webm', 'duration_s': 205, 'tags': ['Christmas Music'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['uk1gm76i']}\n",
      "957266 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yuletide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'TpOeDP3CsBM', 's3_filepath': 's3://suno-data/shared/nfdg/TpOeDP3CsBM/artists/songs/audio/TpOeDP3CsBM/audio.webm', 'duration_s': 307, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYuletide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you\", 'lang': 'en', 'artists': ['h6pjavut']}\n",
      "963512 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'Guch9bjWfJM', 's3_filepath': 's3://suno-data/shared/nfdg/Guch9bjWfJM/Guch9bjWfJM/audio.webm', 'duration_s': 210, 'tags': ['1970s', '1991', '2008 universal fire victim', 'Funk / Soul', 'contemporary gospel', 'pop-soul', 'smooth soul'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['t1tnygx8']}\n",
      "966446 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '-oSKPkE10RY', 's3_filepath': 's3://suno-data/shared/nfdg/-oSKPkE10RY/-oSKPkE10RY/audio.webm', 'duration_s': 285, 'tags': ['1997', 'alternative rock', 'jazz fusion'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['5cb8y4vd']}\n",
      "967177 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'Xa0rKylGA7E', 's3_filepath': 's3://suno-data/shared/nfdg/Xa0rKylGA7E/Xa0rKylGA7E/audio.webm', 'duration_s': 221, 'tags': ['1987', 'Christmas Music', 'Jazz Blues', 'Jazz Pop', 'Jazz Saxophone', 'Soul Jazz', 'hard bop', 'jazz-funk', 'soul jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['fmseh07y']}\n",
      "971933 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '8q7PoiSUjvQ', 's3_filepath': 's3://suno-data/shared/nfdg/8q7PoiSUjvQ/8q7PoiSUjvQ/audio.webm', 'duration_s': 206, 'tags': ['2002', 'Big Band', 'Christmas', 'Christmas Music', 'Swing', 'Traditional Pop', 'american', 'female vocals'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['7pzdp64h']}\n",
      "982700 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'D5_A4-S-FQk', 's3_filepath': 's3://suno-data/shared/nfdg/D5_A4-S-FQk/D5_A4-S-FQk/audio.webm', 'duration_s': 281, 'tags': ['2000', 'Christmas Music', 'Contemporary Jazz', 'Holiday Music', 'Jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['jocwvb5a']}\n",
      "982893 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'S57pm7RbmmU', 's3_filepath': 's3://suno-data/shared/nfdg/S57pm7RbmmU/S57pm7RbmmU/audio.webm', 'duration_s': 260, 'tags': ['1996', 'Christmas Music', 'Country', 'Country Pop', 'Folk, World, & Country', 'Pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['h2fkeuux']}\n",
      "1009001 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'deZg_V_kO68', 's3_filepath': 's3://suno-data/shared/nfdg/deZg_V_kO68/deZg_V_kO68/audio.webm', 'duration_s': 191, 'tags': ['1985', '2008 universal fire victim', 'Adult Contemporary', 'Christmas Music', 'Contemporary Country', 'Folk, World, & Country', 'classic pop and rock', 'singer-songwriter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['zbe2dhut']}\n",
      "1011009 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '9OLbkA5WVdw', 's3_filepath': 's3://suno-data/shared/nfdg/9OLbkA5WVdw/9OLbkA5WVdw/audio.webm', 'duration_s': 197, 'tags': ['2005', 'contemporary jazz', 'cool jazz', 'showtunes', 'television music'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['5eu6hwpy']}\n",
      "1069273 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '51Z6grMs7vw', 's3_filepath': 's3://suno-data/shared/nfdg/51Z6grMs7vw/51Z6grMs7vw/audio.webm', 'duration_s': 161, 'tags': ['1995'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['yw36a2p7']}\n",
      "1094798 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'YNomJlp9Dpg', 's3_filepath': 's3://suno-data/shared/nfdg/YNomJlp9Dpg/YNomJlp9Dpg/audio.webm', 'duration_s': 238, 'tags': ['1990', 'Chicago Blues', 'Piano Blues', 'chicago blues', 'membranophone', 'piano blues'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['8ml1y6un']}\n",
      "1186337 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'o_M7wI5vnns', 's3_filepath': 's3://suno-data/shared/nfdg/o_M7wI5vnns/o_M7wI5vnns/audio.webm', 'duration_s': 287, 'tags': ['1991', 'Christmas Music', 'Folk, World, & Country', 'Religious'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['flp0s25w']}\n",
      "1241295 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'RCqoGlWeVng', 's3_filepath': 's3://suno-data/shared/nfdg/RCqoGlWeVng/RCqoGlWeVng/audio.webm', 'duration_s': 264, 'tags': ['1998', '2008 universal fire victim', 'Christmas Music', 'Vocal Jazz', 'blues rock', 'country blues', 'favoritos', 'female vocalist', 'rhythm & blues'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['lu8lf6sv']}\n",
      "1256997 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '-8evAbZ_4iU', 's3_filepath': 's3://suno-data/shared/nfdg/-8evAbZ_4iU/-8evAbZ_4iU/audio.webm', 'duration_s': 179, 'tags': ['2007', 'Christmas', 'british orchestra', 'orchestral'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['0jiao8p9']}\n",
      "1271941 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'tu104h9oQNI', 's3_filepath': 's3://suno-data/shared/nfdg/tu104h9oQNI/tu104h9oQNI/audio.webm', 'duration_s': 211, 'tags': ['1963', 'Christmas', 'Christmas Music', 'Traditional Pop'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['xu0cq5u7']}\n",
      "1282970 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'Pmyt1rI7ZnQ', 's3_filepath': 's3://suno-data/shared/nfdg/Pmyt1rI7ZnQ/Pmyt1rI7ZnQ/audio.webm', 'duration_s': 127, 'tags': ['1962', 'Christmas Music', 'Folk, World, & Country'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['yxhvwba2']}\n",
      "1360928 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'TfwXvxdeesI', 's3_filepath': 's3://suno-data/shared/nfdg/TfwXvxdeesI/TfwXvxdeesI/audio.webm', 'duration_s': 287, 'tags': ['2019', 'Folk, World, & Country', 'bluegrass', 'blues rock', 'country rock', 'outlaw country', 'southern rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['bhs3p500']}\n",
      "1371583 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yuletide carols being sung by a choir\n",
      "And folks dressed up like Eskimos\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'N6ENB-wEKmc', 's3_filepath': 's3://suno-data/shared/nfdg/N6ENB-wEKmc/N6ENB-wEKmc/audio.webm', 'duration_s': 147, 'tags': ['2011', 'Christmas', 'Christmas Music', 'Folk Pop', 'Folk, World, & Country', 'alternative country', 'female vocalist', 'indie folk', 'indie pop', 'winter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYuletide carols being sung by a choir\\nAnd folks dressed up like Eskimos\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you\", 'lang': 'en', 'artists': ['4bs4x1qd']}\n",
      "1384657 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'vPOtfauYBo4', 's3_filepath': 's3://suno-data/shared/nfdg/vPOtfauYBo4/vPOtfauYBo4/audio.webm', 'duration_s': 273, 'tags': ['2002', 'Christmas Music', 'Rhodes piano', 'Smooth Jazz', 'alto flute', 'drums (drum set)', 'jazz and blues'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['au5ejnm8']}\n",
      "1414083 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'Til60oVIt3k', 's3_filepath': 's3://suno-data/shared/nfdg/Til60oVIt3k/artists/songs/audio/Til60oVIt3k/audio.webm', 'duration_s': 211, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['tdrcxm65']}\n",
      "1463520 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'hbAvoHdrSL0', 's3_filepath': 's3://suno-data/shared/nfdg/hbAvoHdrSL0/hbAvoHdrSL0/audio.webm', 'duration_s': 201, 'tags': ['1987', 'Christmas Music', 'Folk, World, & Country', 'Nashville Sound'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['f6w08zqu']}\n",
      "1472476 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '9wgOAddZHDU', 's3_filepath': 's3://suno-data/shared/nfdg/9wgOAddZHDU/9wgOAddZHDU/audio.webm', 'duration_s': 274, 'tags': ['2003', 'Christmas Music', 'Jazz Fusion', 'american', 'jazz fusion', 'neo-progressive rock', 'pop rock'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['2cmtbkbe']}\n",
      "1526861 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey\n",
      "And some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys\n",
      "And goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer\n",
      "Really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said\n",
      "Many times, many ways\n",
      "Merry Christmas to you.\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'uIGW8eNeVuQ', 's3_filepath': 's3://suno-data/shared/nfdg/uIGW8eNeVuQ/uIGW8eNeVuQ/audio.webm', 'duration_s': 200, 'tags': ['2006', 'alternative rock', 'classic pop and rock', 'pop rock', 'pop/rock', 'singer/songwriter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey\\nAnd some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys\\nAnd goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer\\nReally know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said\\nMany times, many ways\\nMerry Christmas to you.\", 'lang': 'en', 'artists': ['r0zi2hmv']}\n",
      "1567059 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'V4f5Xiuf1tA', 's3_filepath': 's3://suno-data/shared/nfdg/V4f5Xiuf1tA/V4f5Xiuf1tA/audio.webm', 'duration_s': 298, 'tags': ['1991', 'Funk / Soul'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['ob4r5w5b']}\n",
      "1611534 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'OyAKa8wNIiA', 's3_filepath': 's3://suno-data/shared/nfdg/OyAKa8wNIiA/artists/songs/audio/OyAKa8wNIiA/audio.webm', 'duration_s': 245, 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['l4ju5av5']}\n",
      "1631331 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': '-hnuezsR3bo', 's3_filepath': 's3://suno-data/shared/nfdg/-hnuezsR3bo/-hnuezsR3bo/audio.webm', 'duration_s': 273, 'tags': ['1992', 'French horn', 'Post Bop', 'Soul-Jazz', 'bass trombone', 'drums (drum set)', 'flugelhorn', 'hard bop', 'jazz and blues', 'jazz fusion', 'jazz-funk', 'mainstream jazz', 'soul jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['vf9i4bfw']}\n",
      "1649344 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'Qw49VlNwcEs', 's3_filepath': 's3://suno-data/shared/nfdg/Qw49VlNwcEs/Qw49VlNwcEs/audio.webm', 'duration_s': 243, 'tags': ['1995', 'Christmas Music', 'Holiday Music'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['d0lcqjqx']}\n",
      "1659541 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'EVUF-W_F1vU', 's3_filepath': 's3://suno-data/shared/nfdg/EVUF-W_F1vU/EVUF-W_F1vU/audio.webm', 'duration_s': 237, 'tags': ['1997', 'Christmas Music', 'Funk / Soul', 'Rhythm & Blues', 'Soul', 'adult contemporary', 'female vocalist', 'pop soul', 'r&b', 'smooth soul'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['yh4eik9r']}\n",
      "1713656 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'uJ8xYy0Sgnk', 's3_filepath': 's3://suno-data/shared/nfdg/uJ8xYy0Sgnk/uJ8xYy0Sgnk/audio.webm', 'duration_s': 200, 'tags': ['1966', 'Christmas Music', 'Religious', 'Vocal Jazz', 'american', 'cotm candidate', 'female vocalist'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['olpoxmm6']}\n",
      "1771986 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'A-s8YT89q_8', 's3_filepath': 's3://suno-data/shared/nfdg/A-s8YT89q_8/A-s8YT89q_8/audio.webm', 'duration_s': 196, 'tags': ['00s', '2000s', '2002', 'Boy Band', 'Christmas', 'Christmas Music', 'Contemporary R&B', 'Europop', 'Teen Pop', 'blue-eyed soul', 'dance-pop', 'love', 'male vocalist', 'pop soul', 'r&b', 'rnb/swing', 'teen pop', 'winter'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['87d7bnit']}\n",
      "1807778 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'A1OD6fBQ8a8', 's3_filepath': 's3://suno-data/shared/nfdg/A1OD6fBQ8a8/A1OD6fBQ8a8/audio.webm', 'duration_s': 214, 'tags': ['2017', 'Christmas Music', 'Easy Listening', 'classic pop and rock', 'jazz fusion', 'jazz pop', 'jazz-funk'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['32hn7jci']}\n",
      "1823756 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'onWs3K6libU', 's3_filepath': 's3://suno-data/shared/nfdg/onWs3K6libU/onWs3K6libU/audio.webm', 'duration_s': 367, 'tags': ['1994', 'Christmas Music', 'contemporary jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['4icampes']}\n",
      "1846338 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'JSF1dev42CA', 's3_filepath': 's3://suno-data/shared/nfdg/JSF1dev42CA/JSF1dev42CA/audio.webm', 'duration_s': 189, 'tags': ['2013', 'Christmas Music', 'Easy Listening', 'dixieland', 'instrumental pop', 'new orleans jazz revival'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['lw02569n']}\n",
      "1861556 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'vAdM-M7cwLI', 's3_filepath': 's3://suno-data/shared/nfdg/vAdM-M7cwLI/vAdM-M7cwLI/audio.webm', 'duration_s': 297, 'tags': ['2004', 'Funk / Soul', 'RnB/Swing'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['ob4r5w5b']}\n",
      "1899410 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'aZ7IGe_errA', 's3_filepath': 's3://suno-data/shared/nfdg/aZ7IGe_errA/aZ7IGe_errA/audio.webm', 'duration_s': 271, 'tags': ['1997', 'alternative rock', 'jazz fusion'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['5cb8y4vd']}\n",
      "1902844 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'qPAWuEVI7oM', 's3_filepath': 's3://suno-data/shared/nfdg/qPAWuEVI7oM/qPAWuEVI7oM/audio.webm', 'duration_s': 297, 'tags': ['2011', 'Christmas Music', 'Smooth Jazz', 'saxophonist'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['s3c4xuf4']}\n",
      "1938022 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'Fc81JiYPwPQ', 's3_filepath': 's3://suno-data/shared/nfdg/Fc81JiYPwPQ/Fc81JiYPwPQ/audio.webm', 'duration_s': 215, 'tags': ['2016', 'Christmas Music', 'Contemporary Country', 'Country', 'Folk, World, & Country'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['f1nxmzq3']}\n",
      "1993899 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'OwtG2PtCHkc', 's3_filepath': 's3://suno-data/shared/nfdg/OwtG2PtCHkc/OwtG2PtCHkc/audio.webm', 'duration_s': 181, 'tags': ['2003', 'Christmas', 'Christmas Music', 'Easy Listening', 'Soul Jazz', 'american', 'américain', 'ballad', 'calm', 'carol', \"children's music\", 'compositeur', 'composition', 'concept album', 'guitarist', 'guitariste', 'hard bop', 'holiday', 'instrumental', 'jazz and blues', 'love', 'mellow', 'melodic', 'nocturnal', 'optimistic', 'passionate', 'peaceful', 'playful', 'poetic', 'production', 'romantic', 'soft', 'soothing', 'soul jazz', 'warm'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['n1vgkgzo']}\n",
      "1996057 Chestnuts roasting on an open fire\n",
      "Jack Frost nipping at your nose\n",
      "Yule-tide carols being sung by a choir\n",
      "And folks dressed up like Eskimos.\n",
      "\n",
      "Everybody knows a turkey and some mistletoe\n",
      "Help to make the season bright\n",
      "Tiny tots with their eyes all aglow\n",
      "Will find it hard to sleep tonight.\n",
      "\n",
      "They know that Santa's on his way\n",
      "He's loaded lots of toys and goodies on his sleigh\n",
      "And every mother's child is gonna spy\n",
      "To see if reindeer really know how to fly.\n",
      "\n",
      "And so I'm offering this simple phrase\n",
      "To kids from one to ninety-two\n",
      "Although it's been said many times, many ways\n",
      "Merry Christmas to you!\n",
      "(664, \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\")\n",
      "{'id': 'BRI6yvNimgU', 's3_filepath': 's3://suno-data/shared/nfdg/BRI6yvNimgU/BRI6yvNimgU/audio.webm', 'duration_s': 182, 'tags': ['Christmas Music', 'Contemporary Jazz', 'Smooth Jazz'], 'text': \"Chestnuts roasting on an open fire\\nJack Frost nipping at your nose\\nYule-tide carols being sung by a choir\\nAnd folks dressed up like Eskimos.\\n\\nEverybody knows a turkey and some mistletoe\\nHelp to make the season bright\\nTiny tots with their eyes all aglow\\nWill find it hard to sleep tonight.\\n\\nThey know that Santa's on his way\\nHe's loaded lots of toys and goodies on his sleigh\\nAnd every mother's child is gonna spy\\nTo see if reindeer really know how to fly.\\n\\nAnd so I'm offering this simple phrase\\nTo kids from one to ninety-two\\nAlthough it's been said many times, many ways\\nMerry Christmas to you!\", 'lang': 'en', 'artists': ['s3c4xuf4']}\n"
     ]
    }
   ],
   "source": [
    "# Sort similar groups by size while keeping original indices intact\n",
    "sorted_similar_groups = sorted(similar_groups, key=lambda x: len(x), reverse=True)\n",
    "\n",
    "for group in sorted_similar_groups[2:10]:\n",
    "    num_matches = len(group)\n",
    "    print(f\"num matches: {num_matches}\")\n",
    "    for idx, lyric in group:\n",
    "        print(idx, lyric)\n",
    "        print(group[0])\n",
    "        meta = text_metas[idx]  # Use original metas list with preserved index\n",
    "        print(meta)\n",
    "    break\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "  0%|          | 3/209401 [00:00<00:19, 10727.12it/s]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "4\n",
      "760480 目が覚めればいつも 変わらない景色の中にいて\n",
      "大切なことさえ 見えなくなってしまうよ\n",
      "\n",
      "生きてる意味も その喜びも\n",
      "あなたが教えてくれたことで\n",
      "大丈夫かもって 言える気がするよ\n",
      "今すぐ逢いたい その笑顔に\n",
      "\n",
      "あなたを包むすべてが やさしさで溢れるように\n",
      "わたしは強く迷わず あなたを愛し続けるよ\n",
      "どんなときも そばにいるよ\n",
      "\n",
      "当たり前の事は いつでも忘れ去られがちで\n",
      "息継ぎも忘れて 時間だけを食べてゆく\n",
      "\n",
      "花の名前も 空の広さも\n",
      "あなたが教えてくれたことで\n",
      "愛と呼べるもの 分かった気がする\n",
      "せわしなく進む 時の中で\n",
      "\n",
      "わたしの生きる世界が 光で満たされるように\n",
      "あなたの生きる時間を わたしが輝かせるから\n",
      "離れていても そばにいるよ\n",
      "\n",
      "雨に打たれても 風に吹かれても\n",
      "寒さを感じない 今は\n",
      "ぬくもりはいつも この胸の中に\n",
      "決して失くさないよ ありがとう\n",
      "\n",
      "巡る季節の中でも この手を離さないでいて\n",
      "二人を繋ぐ想いが 決して色あせないように\n",
      "\n",
      "あなたを包むすべてが やさしさで溢れるように\n",
      "わたしは強く迷わず あなたを愛し続けるよ\n",
      "どんなときも そばにいるよ\n",
      "\n",
      "離れていても そばにいるよ\n",
      "----------------------------------------------------------------------------------------------------\n",
      "1167282 目が覚めればいつも 変わらない景色の中にいて\n",
      "大切なことさえ 見えなくなってしまうよ\n",
      "\n",
      "生きてる意味も その喜びも\n",
      "あなたが教えてくれたことで\n",
      "大丈夫かもって 言える気がするよ\n",
      "今すぐ逢いたい その笑顔に\n",
      "\n",
      "あなたを包むすべてが やさしさで溢れるように\n",
      "わたしは強く迷わず あなたを愛し続けるよ\n",
      "どんなときも そばにいるよ\n",
      "\n",
      "当たり前の事は いつでも忘れ去られがちで\n",
      "息継ぎも忘れて 時間だけを食べてゆく\n",
      "\n",
      "花の名前も 空の広さも\n",
      "あなたが教えてくれたことで\n",
      "愛と呼べるもの 分かった気がする\n",
      "せわしなく進む 時の中で\n",
      "\n",
      "わたしの生きる世界が 光で満たされるように\n",
      "あなたの生きる時間を わたしが輝かせるから\n",
      "離れていても そばにいるよ\n",
      "\n",
      "雨に打たれても 風に吹かれても\n",
      "寒さを感じない 今は\n",
      "ぬくもりはいつも この胸の中に\n",
      "決して失くさないよ ありがとう\n",
      "\n",
      "巡る季節の中でも この手を離さないでいて\n",
      "二人を繋ぐ想いが 決して色あせないように\n",
      "\n",
      "あなたを包むすべてが やさしさで溢れるように\n",
      "わたしは強く迷わず あなたを愛し続けるよ\n",
      "どんなときも そばにいるよ\n",
      "\n",
      "離れていても そばにいるよ\n",
      "----------------------------------------------------------------------------------------------------\n",
      "1390897 目が覚めればいつも 変わらない景色の中にいて\n",
      "大切なことさえ 見えなくなってしまうよ\n",
      "\n",
      "生きてる意味も その喜びも\n",
      "あなたが教えてくれたことで\n",
      "大丈夫かもって 言える気がするよ\n",
      "今すぐ逢いたい その笑顔に\n",
      "\n",
      "あなたを包むすべてが やさしさで溢れるように\n",
      "わたしは強く迷わず あなたを愛し続けるよ\n",
      "どんなときも そばにいるよ\n",
      "\n",
      "当たり前の事は いつでも忘れ去られがちで\n",
      "息継ぎも忘れて 時間だけを食べてゆく\n",
      "\n",
      "花の名前も 空の広さも\n",
      "あなたが教えてくれたことで\n",
      "愛と呼べるもの 分かった気がする\n",
      "せわしなく進む 時の中で\n",
      "\n",
      "わたしの生きる世界が 光で満たされるように\n",
      "あなたの生きる時間を わたしが輝かせるから\n",
      "離れていても そばにいるよ\n",
      "\n",
      "雨に打たれても 風に吹かれても\n",
      "寒さを感じない 今は\n",
      "ぬくもりはいつも この胸の中に\n",
      "決して失くさないよ ありがとう\n",
      "\n",
      "巡る季節の中でも この手を離さないでいて\n",
      "二人を繋ぐ想いが 決して色あせないように\n",
      "\n",
      "あなたを包むすべてが やさしさで溢れるように\n",
      "わたしは強く迷わず あなたを愛し続けるよ\n",
      "どんなときも そばにいるよ\n",
      "\n",
      "離れていても そばにいるよ\n",
      "----------------------------------------------------------------------------------------------------\n",
      "2\n",
      "1709033 Fellas, I'm ready to get up and do my thing (yeah, go ahead)\n",
      "I wanna get into it, man, you know (go ahead)\n",
      "Like a, like a sex machine, man (yeah, go ahead)\n",
      "Movin', doin' it, you know\n",
      "Can I count it off? (Go ahead)\n",
      "One, two, three, four\n",
      "\n",
      "Get up (get on up)\n",
      "Get up (get on up)\n",
      "Stay on the scene (get on up)\n",
      "Like a sex machine (get on up)\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Stay on the scene (get on up)\n",
      "Like a sex machine (get on up)\n",
      "Get up, get on up\n",
      "Stay on the scene (get on up)\n",
      "Like a sex machine (get on up)\n",
      "\n",
      "Wait a minute\n",
      "Shake your arm, then use your form\n",
      "Stay on the scene like a sex machine\n",
      "You got to have the feeling, soon as you're born\n",
      "Get it together, right on, right on\n",
      "\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "\n",
      "You said, you said you got the\n",
      "You said the feeling you got to get\n",
      "You give me fever and a cold sweat\n",
      "The way I like it is the way it is\n",
      "I got mine, don't worry 'bout his\n",
      "\n",
      "Get up, get on up\n",
      "Stay on the scene (get on up)\n",
      "Like a sex machine (get on up)\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "\n",
      "Bobby, should I take 'em to the bridge?\n",
      "(Go ahead)\n",
      "Take 'em on to the bridge\n",
      "(Take 'em to the bridge)\n",
      "Can I take 'em to the bridge?\n",
      "(Yeah)\n",
      "Take 'em to the bridge?\n",
      "(Go ahead)\n",
      "Hit me now\n",
      "Come on\n",
      "\n",
      "Stay on the scene, like a sex machine\n",
      "The way I like it, is the way it is\n",
      "I got mine, dig it, he's got his\n",
      "\n",
      "Stay on the scene, like a lovin' machine\n",
      "Stay on the scene, like a lovin' machine\n",
      "Stay on the scene\n",
      "\n",
      "I wanna count it off one more time now\n",
      "(Go ahead)\n",
      "You wanna hear it like it did on the top fellas?\n",
      "(Yeah)\n",
      "Hear it like it did on the top?\n",
      "(Yeah)\n",
      "Hit it now\n",
      "\n",
      "Get on up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get on up, get on up\n",
      "\n",
      "Stay on the scene (get on up)\n",
      "like a lovin' machine (get on up)\n",
      "Get up, get on up\n",
      "\n",
      "Taste (get on up)\n",
      "Bein' (get on up)\n",
      "Taste (get on up)\n",
      "Bein' (get on up)\n",
      "\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Stay on the scene, like a sex machine\n",
      "\n",
      "You got to have the feelin' (get on up)\n",
      "Soon as you're born (get on up)\n",
      "Get it together, right on, right on\n",
      "Right on, right on (right on, right on)\n",
      "Right on, right on (right on, right on)\n",
      "Right on, right on (right on, right on)\n",
      "\n",
      "Get up (get on up)\n",
      "Get up (get on up)\n",
      "And then, shake your money maker\n",
      "Shake your money maker\n",
      "Shake your money maker\n",
      "Shake your money maker\n",
      "Shake your money maker\n",
      "Shake your money maker\n",
      "Shake your money maker\n",
      "\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "Get up, get on up\n",
      "\n",
      "Can we hit it like we did one more time, from the top\n",
      "Can we hit like that one more time\n",
      "(One more time)\n",
      "One more time\n",
      "Let's hit it and quit (go ahead)\n",
      "Can we hit it and quit? (Yeah)\n",
      "Can we hit it and quit? (Yeah)\n",
      "Can we hit it and quit? (Yeah)\n",
      "Hit it\n",
      "----------------------------------------------------------------------------------------------------\n",
      "2\n",
      "281995 Just another diamond day\n",
      "Just a blade of grass\n",
      "Just another bale of hay\n",
      "Hope the horses pass\n",
      "\n",
      "Just another field to plough\n",
      "Just a grain of wheat\n",
      "Just a sack of seed to sow\n",
      "And the children eat\n",
      "\n",
      "Just another life to live\n",
      "Just a word to say\n",
      "Just another love to give\n",
      "And a diamond day\n",
      "----------------------------------------------------------------------------------------------------\n",
      "7\n",
      "143416 I started a joke\n",
      "Which started the whole world crying\n",
      "But I didn't see\n",
      "That the joke was on me\n",
      "Oh, no\n",
      "\n",
      "I started to cry\n",
      "Which started the whole world laughing\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen, oh yeah\n",
      "That the joke was on me, oh, no\n",
      "That the joke was on me\n",
      "Oh, oh, oh, oh\n",
      "No, no, no\n",
      "----------------------------------------------------------------------------------------------------\n",
      "435425 I started a joke\n",
      "Which started the whole world crying\n",
      "But I didn't see\n",
      "That the joke was on me\n",
      "Oh, no\n",
      "\n",
      "I started to cry\n",
      "Which started the whole world laughing\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen, oh yeah\n",
      "That the joke was on me, oh, no\n",
      "That the joke was on me\n",
      "Oh, oh, oh, oh\n",
      "No, no, no\n",
      "----------------------------------------------------------------------------------------------------\n",
      "557955 I started a joke\n",
      "Which started the whole world crying\n",
      "But I didn't see\n",
      "That the joke was on me\n",
      "Oh, no\n",
      "\n",
      "I started to cry\n",
      "Which started the whole world laughing\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen, oh yeah\n",
      "That the joke was on me, oh, no\n",
      "That the joke was on me\n",
      "Oh, oh, oh, oh\n",
      "No, no, no\n",
      "----------------------------------------------------------------------------------------------------\n",
      "580926 I can wait another day until I call you, mm-mm,\n",
      "You've only got my heart on a string\n",
      "And ev'rything a'flutter.\n",
      "\n",
      "But another lonely night (and another, and another)\n",
      "Might take forever. (and another, nother)\n",
      "We've only got each other to blame,\n",
      "It's all the same to me, love.\n",
      "'Cause I know what I feel to be right.\n",
      "\n",
      "No more lonely nights, never be another,\n",
      "No more lonely nights.\n",
      "You're my guiding light,\n",
      "Day or night I'm always there.\n",
      "\n",
      "And I won't go away until you tell me so,\n",
      "No, I'll never go away.\n",
      "\n",
      "Yes I know (I know)\n",
      "What I feel (I feel)\n",
      "To be right. (to be right)\n",
      "\n",
      "No more lonely nights, never be another,\n",
      "No more lonely nights.\n",
      "You're my guiding light,\n",
      "Day or night I'm always there.\n",
      "\n",
      "And I won't go away until you tell me so,\n",
      "No, I'll never go away.\n",
      "\n",
      "No more lonely nights, no, no.\n",
      "----------------------------------------------------------------------------------------------------\n",
      "665854 I started a joke\n",
      "Which started the whole world crying\n",
      "But I didn't see\n",
      "That the joke was on me\n",
      "Oh, no\n",
      "\n",
      "I started to cry\n",
      "Which started the whole world laughing\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen, oh yeah\n",
      "That the joke was on me, oh, no\n",
      "That the joke was on me\n",
      "Oh, oh, oh, oh\n",
      "No, no, no\n",
      "----------------------------------------------------------------------------------------------------\n",
      "1249886 I started a joke\n",
      "Which started the whole world crying\n",
      "But I didn't see\n",
      "That the joke was on me\n",
      "Oh, no\n",
      "\n",
      "I started to cry\n",
      "Which started the whole world laughing\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen\n",
      "That the joke was on me\n",
      "\n",
      "I looked at the skies\n",
      "Running my hands over my eyes\n",
      "And I fell out of bed\n",
      "Hurting my head from things that I'd said\n",
      "\n",
      "Till I finally died\n",
      "Which started the whole world living\n",
      "Oh, if I'd only seen, oh yeah\n",
      "That the joke was on me, oh, no\n",
      "That the joke was on me\n",
      "Oh, oh, oh, oh\n",
      "No, no, no\n",
      "----------------------------------------------------------------------------------------------------\n",
      "total n_removed: 11\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "\n"
     ]
    }
   ],
   "source": [
    "# iterate over all groups and remove duplicates\n",
    "# keep the first one and remove the rest in each group\n",
    "\n",
    "\n",
    "ids = [meta[\"id\"] for meta in metas]\n",
    "ids_keep = set(ids)\n",
    "\n",
    "\n",
    "tot_n_removed = 0\n",
    "for group in tqdm(similar_groups):\n",
    "    print(len(group))\n",
    "    if len(group) > 1:\n",
    "        for idx, lyric in group[1:]:\n",
    "            print(idx, lyric)\n",
    "            print(\"-\" * 100)\n",
    "            # get the id from the ids_keep list \n",
    "            meta_id = ids[idx]\n",
    "            ids_keep.remove(meta_id)\n",
    "            tot_n_removed += 1\n",
    "    if tot_n_removed > 10:\n",
    "        break\n",
    "\n",
    "print(f\"total n_removed: {tot_n_removed}\")\n",
    "\n",
    "\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "\n",
    "# double check for duplicates \n",
    "lyrics_list = [meta_info_map[subset_name][id][\"text\"] for id in results[subset_name][\"ids_keep\"]]\n",
    "similar_groups = find_similar_lyrics(lyrics_list)\n",
    "print(len(similar_groups))"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "suno_env",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.10.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}
